Package com.nomagic.magicdraw.uml
Class RepresentationTextParams
- java.lang.Object
-
- com.nomagic.magicdraw.uml.RepresentationTextParams
-
- All Implemented Interfaces:
java.lang.Cloneable
@OpenApiAll public final class RepresentationTextParams extends java.lang.Object implements java.lang.CloneableConfiguration for getting element's text fromRepresentationTextCreator
-
-
Constructor Summary
Constructors Constructor Description RepresentationTextParams()Constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description RepresentationTextParamsclone()static RepresentationTextParamscreateByEnvironmentOptions()Creates new instance of representation params and sets fields depending onEnvironmentOptions.static RepresentationTextParamscreateByOptions(Project project)Creates new instance of representation params and sets fields depending on both Environment and Project options.booleanequals(java.lang.Object o)LocationInToolgetLocationInTool()Invocation information.intgetMaxTextLength()inthashCode()booleanisAddColor()Defines if color information should be added to the representation text.booleanisAddHumanType()Checks if we need to add human type to namebooleanisForceShowTypeName()Defines if element auto numbers (IDs) should be included to the representation text.booleanisShowElementNumber()Defines if element auto numbers (IDs) should be included to the representation text.booleanisShowFullType()Defines how text of some elements should be constructed.booleanisShowPostfix()booleanisShowPrefix()RepresentationTextParamssetAddColor(boolean addColor)RepresentationTextParamssetAddHumanType(boolean addHumanType)Set to add human type to nameRepresentationTextParamssetForceShowTypeName(boolean forceShowTypeName)RepresentationTextParamssetLocationInTool(LocationInTool locationInTool)RepresentationTextParamssetMaxTextLength(int maxTextLength)Set max expected text length.RepresentationTextParamssetShowElementNumber(boolean showElementNumber)RepresentationTextParamssetShowFullType(boolean showFullType)RepresentationTextParamssetShowPostfix(boolean showPostfix)Set to show or hide prefixRepresentationTextParamssetShowPrefix(boolean showPrefix)Set to show or hide prefix
-
-
-
Method Detail
-
createByEnvironmentOptions
public static RepresentationTextParams createByEnvironmentOptions()
Creates new instance of representation params and sets fields depending onEnvironmentOptions. OnlyisShowFullType()value is affected.- Returns:
- new text params instance pre-configured by environment options
-
createByOptions
public static RepresentationTextParams createByOptions(Project project)
Creates new instance of representation params and sets fields depending on both Environment and Project options.isShowFullType()andisShowElementNumber()values are affected.- Returns:
- new text params instance pre-configured by environment and project options
-
setAddColor
public RepresentationTextParams setAddColor(boolean addColor)
- Parameters:
addColor- if true, color information will be added to the text
-
isAddColor
public boolean isAddColor()
Defines if color information should be added to the representation text. Default isfalse. Color information should be added when rendering colored text in UI.- Returns:
- true if color information should be added
-
isForceShowTypeName
public boolean isForceShowTypeName()
Defines if element auto numbers (IDs) should be included to the representation text. Default isfalse.- Returns:
- true if element auto numbers (IDs) should be included
-
setForceShowTypeName
public RepresentationTextParams setForceShowTypeName(boolean forceShowTypeName)
- Parameters:
forceShowTypeName- true if element need to show type name if it's name is empty
-
isShowElementNumber
public boolean isShowElementNumber()
Defines if element auto numbers (IDs) should be included to the representation text. Default isfalse.- Returns:
- true if element auto numbers (IDs) should be included
-
setShowElementNumber
public RepresentationTextParams setShowElementNumber(boolean showElementNumber)
- Parameters:
showElementNumber- true if element auto numbers (IDs) should be included
-
setShowFullType
public RepresentationTextParams setShowFullType(boolean showFullType)
- Parameters:
showFullType- if Type of TypedElement should be represented by full qualified name. Also affects text of relationship end elements.
-
getMaxTextLength
public int getMaxTextLength()
- Returns:
- max text length.
-
setMaxTextLength
public RepresentationTextParams setMaxTextLength(int maxTextLength)
Set max expected text length. There is no guarantee this option will be respected byRepresentationTextCreator- Parameters:
maxTextLength- max text length.
-
setAddHumanType
public RepresentationTextParams setAddHumanType(boolean addHumanType)
Set to add human type to name- Parameters:
addHumanType- flag to indicate if we add or not humann type to text (default is true)
-
isAddHumanType
public boolean isAddHumanType()
Checks if we need to add human type to name- Returns:
- true if we need to add, else false
-
isShowFullType
public boolean isShowFullType()
Defines how text of some elements should be constructed. Affects Type text forTypedElementand end element text forRelationshipelements. Default value isfalse.- Returns:
- true if specific elements will be represented by full qualified name, false if name will be used
-
setLocationInTool
public RepresentationTextParams setLocationInTool(LocationInTool locationInTool)
- Parameters:
locationInTool- describes GUI location for which text is being created- See Also:
LocationInTool
-
getLocationInTool
public LocationInTool getLocationInTool()
Invocation information. SeeLocationInTool. Default isLocationInTool.unknown- Returns:
- location in tool
-
isShowPrefix
public boolean isShowPrefix()
- Returns:
- true if prefix should be added
-
setShowPrefix
public RepresentationTextParams setShowPrefix(boolean showPrefix)
Set to show or hide prefix- Parameters:
showPrefix- false if prefix should not be added
-
isShowPostfix
public boolean isShowPostfix()
- Returns:
- true if postfix should be added
-
setShowPostfix
public RepresentationTextParams setShowPostfix(boolean showPostfix)
Set to show or hide prefix- Parameters:
showPostfix- false if postfix should not be added
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
clone
public RepresentationTextParams clone()
- Overrides:
clonein classjava.lang.Object
-
-