Uses of Interface
com.solibri.smc.api.communication.Comment
-
Packages that use Comment Package Description com.solibri.smc.api.communication com.solibri.smc.api.internal.listeners -
-
Uses of Comment in com.solibri.smc.api.communication
Methods in com.solibri.smc.api.communication that return Comment Modifier and Type Method Description static Comment
Comment. create()
Creates an empty Comment.static Comment
Comment. create(UUID uuid)
Creates an empty Comment with the specified UUID.Methods in com.solibri.smc.api.communication that return types with arguments of type Comment Modifier and Type Method Description List<Comment>
Slide. getComments()
Returns a list of the comments this Slide has directly.List<Comment>
Viewpoint. getComments()
Returns a list of the comments this Viewpoint has.Methods in com.solibri.smc.api.communication with parameters of type Comment Modifier and Type Method Description boolean
Slide. addComment(Comment comment)
Adds the given comment to this slide.boolean
Viewpoint. addComment(Comment comment)
Adds the given comment to this viewpoint.boolean
Slide. removeComment(Comment comment)
Removes the given comment from this slide.boolean
Viewpoint. removeComment(Comment comment)
Removes the given comment from this viewpoint. -
Uses of Comment in com.solibri.smc.api.internal.listeners
Methods in com.solibri.smc.api.internal.listeners with parameters of type Comment Modifier and Type Method Description void
SlideModifiedListener. commentAdded(Slide slide, Comment comment)
Called when comment is added to the given slide.void
SlideModifiedListener. commentAdded(Slide slide, Viewpoint viewpoint, Comment comment)
Called when comment is added to the given slide.void
SlideModifiedListener. commentModified(Slide slide, Comment comment)
This method is called, when comment of a slide is modified.void
SlideModifiedListener. commentModified(Slide slide, Viewpoint viewpoint, Comment comment)
This method is called, when comment of a slide is modified.
-