Uses of Class
org.infolayer.model.UmlOperation

Packages that use UmlOperation
org.infolayer.model   
org.infolayer.ocl   
org.infolayer.templates.html   
 

Uses of UmlOperation in org.infolayer.model
 

Methods in org.infolayer.model that return UmlOperation
 UmlOperation UmlOperation.setSyntax(java.lang.String syntax)
          Shortcut for setTaggedValue("il-syntax", syntax) The syntax must be consistent with the OCL parser. it is used for converting expressions to strings and when generating the documentation
 UmlOperation UmlOperation.setToSql(ToSql toSql)
           
 UmlOperation UmlOperation.setSyntaxAndSql(java.lang.String value)
           
 UmlOperation UmlOperation.setToSql(java.lang.String def)
           
 UmlOperation UmlClassifier.addOperation(UmlOperation o)
           
 UmlOperation UmlClassifier.addOperation(java.lang.String name, OperationImpl impl, int modifiers, java.lang.String description)
          Creates a new UmlOperation with the given name, implementation, modifiers, sql generator and description.
 UmlOperation UmlClassifier.getDynamicOperation(UmlOperation op)
          Returns the correct dynamic operation for this classifier and the given operation...
 UmlOperation UmlClassifier.findOperation(java.lang.String signature, boolean required)
          Searches for an operation with the given signature
 UmlOperation UmlClassifier.lookUpOperation(java.lang.String name, UmlClassifier[] params)
           
 

Methods in org.infolayer.model with parameters of type UmlOperation
 UmlOperation UmlClassifier.addOperation(UmlOperation o)
           
 UmlOperation UmlClassifier.getDynamicOperation(UmlOperation op)
          Returns the correct dynamic operation for this classifier and the given operation...
 

Constructors in org.infolayer.model with parameters of type UmlOperation
UmlParameter(UmlOperation op, java.lang.String name, UmlClassifier type, boolean ret)
           
OperationImplOcl(UmlOperation op, java.lang.String oclCode)
           
 

Uses of UmlOperation in org.infolayer.ocl
 

Methods in org.infolayer.ocl that return UmlOperation
static UmlOperation OperationCallExp.findOperation(OclExpression base, java.lang.String name, OclExpression[] params, boolean nonQuery)
           
 

Constructors in org.infolayer.ocl with parameters of type UmlOperation
OperationCallExp(OclExpression base, UmlOperation op, OclExpression[] params)
           
IteratorExp(OclExpression source, UmlOperation operation, OclExpression body, VarDef iterator)
           
 

Uses of UmlOperation in org.infolayer.templates.html
 

Methods in org.infolayer.templates.html with parameters of type UmlOperation
static void TE_operation.writeOperation(XmlSerializer xw, IlRequest context, Bindings bindings, UmlOperation operation, java.lang.String label, java.lang.String followup, int special)