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
-
-
Field Summary
Fields Modifier and Type Field Description private com.nomagic.magicdraw.uml.text.RepTextParamsparams
-
Constructor Summary
Constructors Modifier Constructor Description RepresentationTextParams()ConstructorprivateRepresentationTextParams(com.nomagic.magicdraw.uml.text.RepTextParams params)
-
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()(package private) com.nomagic.magicdraw.uml.text.RepTextParamsgetParams()inthashCode()booleanisAddColor()Defines if color information should be added to the representation text.booleanisAddHumanType()Checks if we need to add human type to namebooleanisShowElementNumber()Defines if element auto numbers (IDs) should be included to the representation text.booleanisShowFullType()Defines how text of some elements should be constructed.RepresentationTextParamssetAddColor(boolean addColor)RepresentationTextParamssetAddHumanType(boolean addHumanType)Set to add human type to nameRepresentationTextParamssetLocationInTool(LocationInTool locationInTool)RepresentationTextParamssetMaxTextLength(int maxTextLength)Set max expected text length.RepresentationTextParamssetShowElementNumber(boolean showElementNumber)RepresentationTextParamssetShowFullType(boolean showFullType)
-
-
-
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
-
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
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
getParams
com.nomagic.magicdraw.uml.text.RepTextParams getParams()
-
clone
public RepresentationTextParams clone()
- Overrides:
clonein classjava.lang.Object
-
-