Package adams.core.management
Interface LoggingObjectOwner
-
- All Known Implementing Classes:
LoggingObjectOutputPrinter,RecordingOutputPrinter
public interface LoggingObjectOwnerFor 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 LoggingObjectgetOwner()Returns the owner.voidsetOwner(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
-
-