Uses of Interface
com.solibri.smc.api.communication.Slide
-
-
Uses of Slide in com.solibri.smc.api.bcflive
Methods in com.solibri.smc.api.bcflive that return types with arguments of type Slide Modifier and Type Method Description Map<UUID,Slide>
BcfApi. getExportedSlides(Set<UUID> exportedIds)
Gets from current Solibri model Slide instances that have already been exported with one of the given IDs.Map<UUID,Slide>
BcfApi. getSlides(Set<UUID> uuids)
Gets slides from current Solibri model Slide instances with the given IDs. -
Uses of Slide in com.solibri.smc.api.checking
Methods in com.solibri.smc.api.checking that return types with arguments of type Slide Modifier and Type Method Description Map<Component,Slide>
Result. getComponentSlides()
Get slides related to components in checking results.Optional<Slide>
Result. getSlide()
Returns theSlide
based on this checking results, if on has been created.Optional<Slide>
ResultCategory. getSlide()
Returns theSlide
related to this result category, if one exists.Optional<Slide>
Result. setSlide(Slide slide)
Sets the relatedSlide
for this result and returns the possible previous related slide.Optional<Slide>
ResultCategory. setSlide(Slide slide)
Sets the relatedSlide
for this result category and returns the possible previous related slide.Methods in com.solibri.smc.api.checking with parameters of type Slide Modifier and Type Method Description Optional<Slide>
Result. setSlide(Slide slide)
Sets the relatedSlide
for this result and returns the possible previous related slide.Optional<Slide>
ResultCategory. setSlide(Slide slide)
Sets the relatedSlide
for this result category and returns the possible previous related slide. -
Uses of Slide in com.solibri.smc.api.communication
Methods in com.solibri.smc.api.communication that return Slide Modifier and Type Method Description static Slide
Slide. create()
Creates an empty slide.Methods in com.solibri.smc.api.communication that return types with arguments of type Slide Modifier and Type Method Description Collection<Slide>
Presentation. getSlides()
Returns all the issues in this presentation.Methods in com.solibri.smc.api.communication with parameters of type Slide Modifier and Type Method Description boolean
Presentation. addSlide(Slide slide)
Adds the given slide to this presentation.boolean
Presentation. removeSlide(Slide slide)
Removes the given slide from this presentation. -
Uses of Slide in com.solibri.smc.api.internal.listeners
Methods in com.solibri.smc.api.internal.listeners with parameters of type Slide 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.void
SlideModifiedListener. commentRemoved(Slide slide, String commentId)
This method is called, when comment of a slide is removed.void
SlideModifiedListener. componentsAdded(Slide slide, Collection<Component> addedComponents)
This method is called when components are added to a slide.void
SlideModifiedListener. componentsRemoved(Slide slide, Collection<Component> removedComponents)
This method is called when components are removed from a slide.void
SlideModifiedListener. slideRemoved(Slide slide)
This method is called when slide is removed.void
SlideModifiedListener. viewPointAdded(Slide slide, Viewpoint viewpoint)
Called when viewpoint is added to the given slide.void
SlideModifiedListener. viewPointRemoved(Slide slide, String viewpointId)
Called when viewpoint is removed from the given slide.void
SlideModifiedListener. viewpointUpdated(Slide slide, Viewpoint viewpoint)
Called when the given viewpoint is updated.Method parameters in com.solibri.smc.api.internal.listeners with type arguments of type Slide Modifier and Type Method Description void
SlideModifiedListener. descriptionModified(List<Slide> slides)
Called when description of the given slides is modified.void
SlideModifiedListener. dueDateModified(List<Slide> slides)
Called when due date of the given slides is modified.void
SlideModifiedListener. labelsModified(List<Slide> slides)
Called when labels of the given slides are modified.void
SlideModifiedListener. priorityModified(List<Slide> slides)
Called when priority of the given slides is modified.void
SlideModifiedListener. responsibilitiesModified(List<Slide> slides)
Called when responsibilities of the given slides are modified.void
SlideModifiedListener. stageModified(List<Slide> slides)
Called when stage of the given slides is modified.void
SlideModifiedListener. statusModified(List<Slide> slides)
Called when status of the given slides is modified.void
SlideModifiedListener. titleModified(List<Slide> slides)
Called when title of the given slides is modified.void
SlideModifiedListener. typeModified(List<Slide> slides)
Called when type of the given slides is modified. -
Uses of Slide in com.solibri.smc.api.ui.views.checkingresults
Methods in com.solibri.smc.api.ui.views.checkingresults that return types with arguments of type Slide Modifier and Type Method Description Optional<Slide>
CheckingResultsViewRow. getSlide()
Returns the slide that might relate to this row.Method parameters in com.solibri.smc.api.ui.views.checkingresults with type arguments of type Slide Modifier and Type Method Description void
CheckingResultsView. chooseRows(Collection<Slide> slides)
Choose rows based on slides. -
Uses of Slide in com.solibri.smc.api.ui.views.issues
Methods in com.solibri.smc.api.ui.views.issues that return types with arguments of type Slide Modifier and Type Method Description Collection<Slide>
IssuesView. getAllSlides()
Returns all the issues in this view.Collection<Slide>
IssuesView. getMarkedSlides()
Returns all the marked issues in this view.Collection<Slide>
IssuesView. getSelectedSlides()
Returns all the selected issues in this view.
-