Interface CheckingResultsView
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
chooseRows(Collection<Slide> slides)
Choose rows based on slides.void
chooseRows(Set<CheckingResultsViewRow> rows)
Chooses the given rows in the UI.Set<CheckingResultsViewRow>
getChosenRows()
Returns the currently chosen rows.HyperlinkColumn
getHyperlinkColumn()
Returns the hyperlink column of this view.MainColumn
getMainColumn()
Returns the main column of this view.ViewpointColumn
getViewpointColumn()
Returns the viewpoint column of this view.void
hideCustomColumn(String uniqueID)
Hides the custom column with the given unique id.void
showCustomColumn(String uniqueID)
Shows the custom column with the given unique id.-
Methods inherited from interface com.solibri.smc.api.ui.View
getIcon, getLocalizedResource, getName, getToolBar, getUniqueId, initializePanel, onApplicationExit, onBasketSelectionChanged, onCheckingEnded, onCheckingStarted, onComponentChosen, onComponentsHidden, onComponentsZoomedTo, onItoFinished, onItoStarted, onModelClosed, onModelLoaded, onModelModified, onRulesetAdded, onRulesetRemoved, onSettingsChanged, onSubModelAdded, onSubModelUpdated
-
-
-
-
Method Detail
-
getChosenRows
Set<CheckingResultsViewRow> getChosenRows()
Returns the currently chosen rows.- Returns:
- the chosen rows
- Since:
- 9.12.0
-
chooseRows
void chooseRows(Set<CheckingResultsViewRow> rows)
Chooses the given rows in the UI. Does NOT keep the previous selection in addition to the given rows.- Parameters:
rows
- the rows to be selected- Since:
- 9.12.0
-
getMainColumn
MainColumn getMainColumn()
Returns the main column of this view.- Returns:
- the main column
- Since:
- 9.12.0
-
getHyperlinkColumn
HyperlinkColumn getHyperlinkColumn()
Returns the hyperlink column of this view.- Returns:
- the hyperlink column
- Since:
- 9.12.0
-
getViewpointColumn
ViewpointColumn getViewpointColumn()
Returns the viewpoint column of this view.- Returns:
- the viewpoint column
- Since:
- 9.12.0
-
chooseRows
void chooseRows(Collection<Slide> slides)
Choose rows based on slides. If multiple slides are provided, they must represent results of the same Rule. If they aren't, only rows related to the first slide are chosen.- Parameters:
slides
- the slides
-
showCustomColumn
void showCustomColumn(String uniqueID)
Shows the custom column with the given unique id. If the column is already shown, this does nothing.- Parameters:
uniqueID
- the unique id of the custom column- Since:
- 9.12.0
-
hideCustomColumn
void hideCustomColumn(String uniqueID)
Hides the custom column with the given unique id. If the column is already hidden, this does nothing.- Parameters:
uniqueID
- the unique id of the custom column- Since:
- 9.12.0
-
-