public class DecoratorSeqList extends java.lang.Object implements ISeqList
Modifier and Type | Field and Description |
---|---|
private ISeqList |
decoree
The decoree/target ISeqList list.
|
Constructor and Description |
---|
DecoratorSeqList()
Constructor that is used when the decoree is not known at construction time.
|
DecoratorSeqList(ISeqList decoree)
Constructor used to set the decoree to a known value at construction time.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
execute(IPhraseVisitor algo,
java.lang.Object... params)
Simply delegates the call to the decoree.
|
void |
setDecoree(ISeqList decoree)
Setter methods used to set the decoree.
|
private ISeqList decoree
public DecoratorSeqList(ISeqList decoree)
decoree
- The decoree phrase sequencepublic DecoratorSeqList()
public void setDecoree(ISeqList decoree)
decoree
- The new decoree ISeqList.public java.lang.Object execute(IPhraseVisitor algo, java.lang.Object... params)