Interface ALog
-
- All Superinterfaces:
AAbstraction
- All Known Implementing Classes:
EclipseLog
public interface ALog extends AAbstraction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaddLogListener(ALogListener listener)default voidlog(org.eclipse.core.runtime.CoreException e)Logs the given core exception.voidlog(org.eclipse.core.runtime.IStatus status)Logs the status.voidremoveLogListener(ALogListener listener)-
Methods inherited from interface org.faktorips.devtools.abstraction.AAbstraction
unwrap
-
-
-
-
Method Detail
-
log
void log(org.eclipse.core.runtime.IStatus status)
Logs the status.
-
log
default void log(org.eclipse.core.runtime.CoreException e)
Logs the given core exception.
-
addLogListener
void addLogListener(ALogListener listener)
-
removeLogListener
void removeLogListener(ALogListener listener)
-
-