org.objectweb.medor.api
Interface RWTupleStructure
public interface RWTupleStructure
Repesents an extension of TupleStructure where the Fields can be added
or removed.
It is used by QueryNodes
QueryNode
void | addField(Field f) - Adds a Field to the current RWTupleStructure
|
boolean | removeField(Field f) - Removes a Field from the current RWTupleStructure.
|
addField
public void addField(Field f)
Adds a Field to the current RWTupleStructure
f
- The Field to be added.
removeField
public boolean removeField(Field f)
Removes a Field from the current RWTupleStructure.
f
- The Field to be removed.
- false if the Field could not be removed (was not part of the
TupleStructure).