Uses of Class
org.infolayer.model.UmlObject

Packages that use UmlObject
org.infolayer.connection.akel   
org.infolayer.connection.ram   
org.infolayer.connection.table   
org.infolayer.model   
org.infolayer.soap   
org.infolayer.templates.html   
org.infolayer.templates.wml   
 

Uses of UmlObject in org.infolayer.connection.akel
 

Methods in org.infolayer.connection.akel with parameters of type UmlObject
 void AkelConnection.writeFully(UmlObject umlObject)
           
 void AkelConnection.modified(UmlObject umlObject)
          Mark the given instance as modified, so it will be written back to the underlying persistent storage
 

Uses of UmlObject in org.infolayer.connection.ram
 

Methods in org.infolayer.connection.ram with parameters of type UmlObject
 void RamConnection.modified(UmlObject umlObject)
          Mark the given instance as modified, so it will be written back to the underlying persistent storage
 

Uses of UmlObject in org.infolayer.connection.table
 

Methods in org.infolayer.connection.table that return UmlObject
 UmlObject TableConnection.getInstance(java.lang.String id)
           
 

Methods in org.infolayer.connection.table with parameters of type UmlObject
 void TableConnection.createInstance(UmlObject object)
          Please note: Currently, it is assumed that the table creates an ID automatically!
 void TableConnection.modified(UmlObject umlObject)
           
 void TableConnection.loadInstance(UmlObject object, UmlProperty part)
           
 boolean TableBinary.isOwnedBy(UmlObject object, UmlProperty property)
           
 

Uses of UmlObject in org.infolayer.model
 

Methods in org.infolayer.model that return UmlObject
 UmlObject UmlObject.getCopy()
          Creates a copy of this object.
 UmlObject UmlClass.getInstance(java.lang.String id)
          Returns the instance of this class or any subclass with the given id.
 UmlObject UmlModel.login(java.lang.String username, java.lang.String password)
           
 UmlObject UmlModel.getUser()
           
 UmlObject UmlModel.getObject(java.lang.String id)
           
 UmlObject Connection.createUmlObject(UmlClass umlClass, java.lang.String id, boolean fillImmediately)
          Creates a new UmlObject for an existing instance
 

Methods in org.infolayer.model with parameters of type UmlObject
 void ObjectStateImpl.init(UmlObject object)
           
 boolean BinaryImpl.isOwnedBy(UmlObject object, UmlProperty part)
           
 boolean Binary.isOwnedBy(UmlObject object, UmlProperty part)
          Allows detection of 'self-assignments'
 void ModificationListener.modified(UmlObject umlObject)
          Mark the given instance as modified, so it will be written back to the underlying persistent storage
 void ObjectState.init(UmlObject object)
           
 boolean UmlModel.login(UmlObject user, java.lang.String password)
           
 java.lang.String UmlModel.getUserName(UmlObject user)
           
 void UmlModel.setUser(UmlObject user)
           
 void UmlModel.modified(UmlObject object)
           
 void UmlModel.lockObject(UmlObject object)
           
 void UmlModel.unlockObject(UmlObject object)
           
 boolean UmlModel.isObjectLocked(UmlObject object)
           
 boolean ByteArrayBinary.isOwnedBy(UmlObject object, UmlProperty property)
           
 boolean UmlProperty.add(UmlObject object, java.lang.Object value)
          Add value to this property of object.
 boolean UmlProperty.remove(UmlObject object, java.lang.Object value)
          Remove value from this property of object.
 void UmlProperty.set(UmlObject object, java.lang.Object value)
          Set this propberty of object to value.
 

Constructors in org.infolayer.model with parameters of type UmlObject
FileBinary(UmlObject owner, UmlProperty property, java.io.File file)
          Maps an existing file to a "Binary" object
User(UmlObject object, java.lang.String name)
           
 

Uses of UmlObject in org.infolayer.soap
 

Methods in org.infolayer.soap with parameters of type UmlObject
 void Soap_Update.processProperty(UmlClassifier type, UmlObject object)
          Processes a single property for the current object in a SOAP request.
 

Uses of UmlObject in org.infolayer.templates.html
 

Methods in org.infolayer.templates.html with parameters of type UmlObject
static void TE_property.writeAssocSelect(XmlSerializer xw, IlRequest context, UmlObject object, UmlProperty part, java.lang.Object value, boolean isQuery)
          Writes a selection box holding the possible values that can be assigned to the given association.
static void TE_property.writeEnumerationSelect(XmlSerializer xw, IlRequest context, UmlClass cls, UmlObject object, Feature part, java.lang.Object value, boolean query)
           
static void TE_property.writeBooleanSelect(XmlSerializer xw, IlRequest context, UmlClass cls, UmlObject object, Feature part, java.lang.Object value, boolean query)
           
static void TE_property.writeProperty(XmlSerializer xw, IlRequest context, UmlClass umlClass, UmlObject object, UmlProperty part, boolean compact)
           
static void TE_tree.writeObjectTree(XmlSerializer xw, IlRequest context, UmlObject umlObject, UmlProperty children, java.util.Hashtable visited)
           
static void TE_tree.writeObjectTree(XmlSerializer xw, IlRequest context, UmlObject umlObject, UmlProperty children, TemplateElement te, Bindings bindings, java.util.Hashtable visited)
           
static void TE_properties.writeObjectDetails(XmlSerializer xw, IlRequest context, UmlClass type, UmlObject object, java.lang.String[] names, int onEmpty)
          If names array is null, the list is computed automatically
static void HtmlUtils.writeObject(XmlSerializer xw, IlRequest context, UmlObject object, java.lang.String format)
           
static java.lang.String HtmlUtils.getBinaryName(UmlObject o, UmlProperty prop, java.lang.String format)
           
static void HtmlUtils.writeBinary(XmlSerializer xw, IlRequest context, UmlObject o, UmlProperty prop, java.lang.String format, java.lang.String name)
          Please note: In contrast to most other write methods, writeBinary is not a special case of writeAny, since it requires the "owning" object to generate a link.
 

Uses of UmlObject in org.infolayer.templates.wml
 

Methods in org.infolayer.templates.wml with parameters of type UmlObject
static void TE_property.writePart(XmlSerializer xw, IlRequest context, UmlObject object, UmlProperty property)