Package adams.core.management
Interface LoggingObjectOwner
-
- All Known Implementing Classes:
LoggingObjectOutputPrinter
,RecordingOutputPrinter
public interface LoggingObjectOwner
For classes that use a LoggingObject as owner.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoggingObject
getOwner()
Returns the owner.void
setOwner(LoggingObject value)
Sets the owningLoggingObject
, i.e., the object which stdout and stderr objects are used for printing
-
-
-
Method Detail
-
setOwner
void setOwner(LoggingObject value)
Sets the owningLoggingObject
, i.e., the object which stdout and stderr objects are used for printing
-
getOwner
LoggingObject getOwner()
Returns the owner.- Returns:
- the owner, null if none set
-
-