* Sets the name, and source and target types of the transformation.
*/
public void applyToTransformation(Transformation tf) {
applyName(tf);
if (getSourceType().getStructureType() == DataStructureType.None) {
tf.setInputStructure(new NoStructure());
}
if (getTargetType().getStructureType() == DataStructureType.None) {
tf.setOutputStructure(new NoStructure());
}
// For the other structure types the structure will be applied in a later page.
}