Interface ContextualDesignation
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SpecificLabel
public interface ContextualDesignation extends Serializable
Interface describing a representation of one of the following elements of a Process Model:- <activity>
- <description>
- <label>
- <title>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContent()
Get the content of the designationString
getLanguage()
Get the language of this designationString
getRole()
Get the role name for this designationvoid
setContent(String strContent)
Set the content of the designationvoid
setLanguage(String strLang)
Set the language of this designationvoid
setRole(String strRole)
Set the role name for this designation
-
-
-
Method Detail
-
getContent
String getContent()
Get the content of the designation- Returns:
- a string value
-
setContent
void setContent(String strContent)
Set the content of the designation- Parameters:
strContent
- new value
-
getRole
String getRole()
Get the role name for this designation
-
setRole
void setRole(String strRole)
Set the role name for this designation
-
getLanguage
String getLanguage()
Get the language of this designation
-
setLanguage
void setLanguage(String strLang)
Set the language of this designation
-
-