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

See Also:
QueryNode

Method Summary
 void addField(Field f)
          Adds a Field to the current RWTupleStructure
 boolean removeField(Field f)
          Removes a Field from the current RWTupleStructure.
 

Method Detail

addField

public void addField(Field f)
Adds a Field to the current RWTupleStructure

Parameters:
f - The Field to be added.

removeField

public boolean removeField(Field f)
Removes a Field from the current RWTupleStructure.

Parameters:
f - The Field to be removed.
Returns:
false if the Field could not be removed (was not part of the TupleStructure).