Package jadex.xml
Class LinkingInfo
- java.lang.Object
-
- jadex.xml.LinkingInfo
-
public class LinkingInfo extends java.lang.Object
The link info stores how parent - child(ren) should be composed. Bulk mode means that linking is invoked only after all children have been collected.
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
bulklink
The link mode (determined by the linker if present).static boolean
DEFAULT_BULKLINK_MODE
Default link mode.protected java.lang.Object
linker
The linker.
-
Constructor Summary
Constructors Constructor Description LinkingInfo(boolean bulklink)
Create a new linking info.LinkingInfo(java.lang.Object linker)
Create a new linking info.LinkingInfo(java.lang.Object linker, boolean bulklink)
Create a new linking info.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getLinker()
Get the linker.boolean
isBulkLink()
Get the bulklink.java.lang.String
toString()
Get the string representation.
-
-
-
Field Detail
-
DEFAULT_BULKLINK_MODE
public static final boolean DEFAULT_BULKLINK_MODE
Default link mode.- See Also:
- Constant Field Values
-
linker
protected java.lang.Object linker
The linker.
-
bulklink
protected boolean bulklink
The link mode (determined by the linker if present).
-
-
Method Detail
-
getLinker
public java.lang.Object getLinker()
Get the linker.- Returns:
- The linker.
-
isBulkLink
public boolean isBulkLink()
Get the bulklink.- Returns:
- The bulklink.
-
toString
public java.lang.String toString()
Get the string representation.- Overrides:
toString
in classjava.lang.Object
- Returns:
- The string representation.
-
-