FileDocCategorySizeDatePackage
UMLMember.javaAPI DocExample2016Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLMember

public interface UMLMember implements UMLElement
Presents members of a class (attributes and operations).
version
2.1.01 12.03.1998
author
Andrei Ivanov
see
UMLAttribute
see
UMLOperation

Fields Summary
Constructors Summary
Methods Summary
public UMLClassgetContainingClass()
Returns the class that contains this member.

public UMLStringEnumerationgetDeclarationStrings()
Returns member's declaration. Returns string enumeration because declaration can continue on a number of strings.

return
String enumerator with the text of declaration, line by line.

public UMLTypegetType()
Returns member's type as UMLType

since
345

public java.lang.StringgetTypeExpression()
Returns string that contains expression of the member type

public booleanisAttribute()
Indicates whether the member is attribute.

public booleanisConst()
Indicates whether this member is constant.

public booleanisFinal()
Indicates whether this member is final. A final operation may never be overriden. A final attribute may never have its value reassigned.

public booleanisFriend()
Indicates whether this member is friend.

public booleanisOperation()
Indicates whether the member is operation.

public booleanisStatic()
Indicates whether this member is static.

return
true - if this member is class member
false - if this member is object member.