Interface RegisteredInvocations
-
- All Known Implementing Classes:
DefaultRegisteredInvocations
,SingleRegisteredInvocation
public interface RegisteredInvocations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(Invocation invocation)
void
clear()
java.util.List<Invocation>
getAll()
boolean
isEmpty()
void
removeLast()
-
-
-
Method Detail
-
add
void add(Invocation invocation)
-
removeLast
void removeLast()
-
getAll
java.util.List<Invocation> getAll()
-
clear
void clear()
-
isEmpty
boolean isEmpty()
-
-