ubiware.util.saplbuilder
Interface Object

All Known Implementing Classes:
ActionArgumentContainer, Container, Literal, Resource, Variable

public interface Object

Interface implemented by classes which can act as a object of a statement. Caution: when implementing this interface by your class or especially importing it in your class, the mening of 'Object' without any further prefixing will no longer refer to java.lang.Object but ubiware.util.saplbuilder.Object . This in particular changes the meaning of

public boolean equals (Object object){
 }
Which should be changed to
public boolean equals (java.lang.Object object){
 }

Since:
17 Aug 2010
Author:
Michael Cochez for Ubiware project

Method Summary
 void generateSapl(java.lang.StringBuilder builder)
          Generate the s-apl representation for this object.
 

Method Detail

generateSapl

void generateSapl(java.lang.StringBuilder builder)
Generate the s-apl representation for this object.

Parameters:
builder - The StringBuilder on which the representation must be appended.