Package com._1c.g5.v8.dt.erd.model
Class ErdEntityComment
- java.lang.Object
-
- com._1c.g5.v8.dt.erd.model.ErdEntityComment
-
public class ErdEntityComment extends Object
Representation of entity comment.
-
-
Constructor Summary
Constructors Constructor Description ErdEntityComment()
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com._1c.g5.v8.dt.diagram.framework.model.Point
getPositionTranslate()
Returns position translate from parent.String
getValue()
boolean
isCommented()
Returnstrue
if commented.boolean
isVisible()
Returnstrue
if comment is visible.void
setPositionTranslate(com._1c.g5.v8.dt.diagram.framework.model.Point positionTranslate)
Sets position translate from parentvoid
setValue(String value)
void
setVisible(boolean isVisible)
Sets comment visible or not.
-
-
-
Method Detail
-
getValue
public String getValue()
- Returns:
- the comment. Can't return
null
.
-
getPositionTranslate
public com._1c.g5.v8.dt.diagram.framework.model.Point getPositionTranslate()
Returns position translate from parent.- Returns:
- the position translate. Can't return
null
.
-
isVisible
public boolean isVisible()
Returnstrue
if comment is visible.- Returns:
true
if comment is visible.
-
isCommented
public boolean isCommented()
Returnstrue
if commented.- Returns:
true
if commented.
-
setValue
public void setValue(String value)
- Parameters:
value
- - the value to set. Can't benull
.
-
setPositionTranslate
public void setPositionTranslate(com._1c.g5.v8.dt.diagram.framework.model.Point positionTranslate)
Sets position translate from parent- Parameters:
positionTranslate
- - the position translate to set. Can't benull
.
-
setVisible
public void setVisible(boolean isVisible)
Sets comment visible or not.- Parameters:
isVisible
- -true
if comment should be visible.
-
-