Class ComponentActionList.ActionEntry
- java.lang.Object
- 
- jadex.extension.envsupport.environment.ComponentActionList.ActionEntry
 
- 
- All Implemented Interfaces:
- java.lang.Comparable
 - Enclosing class:
- ComponentActionList
 
 public static class ComponentActionList.ActionEntry extends java.lang.Object implements java.lang.ComparableEntry for a scheduled action.
- 
- 
Field SummaryFields Modifier and Type Field Description ISpaceActionactionThe action.protected static intCNTjava.lang.ExceptionexceptionThe exception (set after failed execution).intidAn id to differentiate otherwise equal actions.IResultListenerlistenerThe result listener.java.util.MapparametersThe action parameters.java.lang.ObjectresultThe result (set after successful execution).
 - 
Constructor SummaryConstructors Constructor Description ActionEntry(ISpaceAction action, java.util.Map parameters, IResultListener listener)Convenience constructor for inline entry creation.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(java.lang.Object obj)Compare two action entries.booleanisInvalid()Get the invalid.voidsetInvalid(boolean invalid)Set the invalid.java.lang.StringtoString()Create a string representation of the action.
 
- 
- 
- 
Field Detail- 
CNTprotected static int CNT 
 - 
actionpublic ISpaceAction action The action.
 - 
parameterspublic java.util.Map parameters The action parameters.
 - 
listenerpublic IResultListener listener The result listener.
 - 
resultpublic java.lang.Object result The result (set after successful execution).
 - 
exceptionpublic java.lang.Exception exception The exception (set after failed execution).
 - 
idpublic int id An id to differentiate otherwise equal actions.
 
- 
 - 
Constructor Detail- 
ActionEntrypublic ActionEntry(ISpaceAction action, java.util.Map parameters, IResultListener listener) Convenience constructor for inline entry creation.
 
- 
 - 
Method Detail- 
compareTopublic int compareTo(java.lang.Object obj) Compare two action entries.- Specified by:
- compareToin interface- java.lang.Comparable
 
 - 
isInvalidpublic boolean isInvalid() Get the invalid.- Returns:
- The invalid.
 
 - 
setInvalidpublic void setInvalid(boolean invalid) Set the invalid.- Parameters:
- invalid- The invalid to set.
 
 - 
toStringpublic java.lang.String toString() Create a string representation of the action.- Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-