Class DeferredActionCollection
- java.lang.Object
-
- org.apache.cxf.tools.corba.processors.idl.DeferredActionCollection
-
public final class DeferredActionCollection extends Object
Class that holds a fully qualified name as the key that represents a type that was forward declared. Associated with each fully qualified name is a list of actions. Each action represents a task that is deferred until the type is really declared.
-
-
Constructor Summary
Constructors Constructor Description DeferredActionCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(Scope scope, DeferredAction action)List<DeferredAction>getActions(Scope scope)intgetSize()voidremove(Scope scope, DeferredAction action)voidremoveScope(Scope scope)
-
-
-
Method Detail
-
add
public void add(Scope scope, DeferredAction action)
-
remove
public void remove(Scope scope, DeferredAction action)
-
removeScope
public void removeScope(Scope scope)
-
getSize
public int getSize()
-
getActions
public List<DeferredAction> getActions(Scope scope)
-
-