Package org.nuiton.eugene.models.object
Interface ObjectModelModifier
-
- All Known Implementing Classes:
ObjectModelJavaModifier
,ObjectModelUMLModifier
public interface ObjectModelModifier
Modifiers that can be used Created: 3 nov. 2009- Author:
- Florian Desbois - desbois@codelutin.com
-
-
Field Summary
Fields Modifier and Type Field Description static ObjectModelModifier
ABSTRACT
Deprecated.static ObjectModelModifier
AGGREGATE
Deprecated.static ObjectModelModifier
COMPOSITE
Deprecated.static ObjectModelModifier
FINAL
Deprecated.static ObjectModelModifier
NAVIGABLE
Deprecated.static ObjectModelModifier
ORDERED
Deprecated.static ObjectModelModifier
PACKAGE
Deprecated.static ObjectModelModifier
PRIVATE
Deprecated.static ObjectModelModifier
PROTECTED
Deprecated.static ObjectModelModifier
PUBLIC
Deprecated.static ObjectModelModifier
STATIC
Deprecated.static ObjectModelModifier
TRANSIENT
Deprecated.static ObjectModelModifier
UNIQUE
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
boolean
isAssociationType()
boolean
isVisibility()
-
-
-
Field Detail
-
STATIC
@Deprecated static final ObjectModelModifier STATIC
Deprecated.
-
FINAL
@Deprecated static final ObjectModelModifier FINAL
Deprecated.
-
ABSTRACT
@Deprecated static final ObjectModelModifier ABSTRACT
Deprecated.
-
TRANSIENT
@Deprecated static final ObjectModelModifier TRANSIENT
Deprecated.
-
PUBLIC
@Deprecated static final ObjectModelModifier PUBLIC
Deprecated.
-
PROTECTED
@Deprecated static final ObjectModelModifier PROTECTED
Deprecated.
-
PRIVATE
@Deprecated static final ObjectModelModifier PRIVATE
Deprecated.
-
PACKAGE
@Deprecated static final ObjectModelModifier PACKAGE
Deprecated.
-
AGGREGATE
@Deprecated static final ObjectModelModifier AGGREGATE
Deprecated.
-
COMPOSITE
@Deprecated static final ObjectModelModifier COMPOSITE
Deprecated.
-
UNIQUE
@Deprecated static final ObjectModelModifier UNIQUE
Deprecated.
-
ORDERED
@Deprecated static final ObjectModelModifier ORDERED
Deprecated.
-
NAVIGABLE
@Deprecated static final ObjectModelModifier NAVIGABLE
Deprecated.
-
-
Method Detail
-
isVisibility
boolean isVisibility()
- Returns:
- true is the current ObjectModelModifier is a Java visibility
-
isAssociationType
boolean isAssociationType()
- Returns:
- true is the current ObjectModelModifier is an UML association type
-
getName
String getName()
- Returns:
- the name of the constant. This refers to Enum.name().
-
-