Package com.solibri.smc.api
Class SMC
java.lang.Object
com.solibri.smc.api.SMC
The SMC is used to access different Solibri services.
- Since:
- 9.10.2
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Brings the application to front.static void
Closes the project normally, possibly asking the user for confirmation, for example, if the project has unsaved changes.static void
Closes the project without asking any questions.static ProgressBar
createProgressBar
(String title, int total) Creates a new progressbar instance with given title and total amount of progress.static ThreeD
get3D()
Returns the 3D interface for accessing 3D related functionality.static JFrame
Returns Solibri application frame.static BcfApi
getBCF()
Returns theBcfApi
that provides information about the BCF communication.static BcfXml
Returns a service for creating BCF-XML reports.static Checking
Returns theChecking
that provides information about the softwares checking activities.static User
Returns the current user using this application.Returns a list of custom views that are active in the software.static InfoDisplayer
Returns an interface for handling the info view (UI).static InformationTakeoff
Returns theInformationTakeoff
instance.static InternalViews
Returns the Solibri internal views.static Layouts
static Model
getModel()
Returns an interface to the SMC data model.static Models
Returns service for accessing models.static List<Presentation>
Returns all the presentation available in the software.static Product
Returns the product variant that is running.static String
Returns the product version that is currently running.static Project
Returns the instance for accessing saved project file (.smc) information.static SelectionBasket
Returns the default selection basket.static Settings
Provides access to the settings of the software.static boolean
isBusy()
Returns true when Solibri is busy working on something, for example, importing IFC, Checking, or evaluating classifications.static Model
openModel
(String name, InputStream inputStream) Opens a Solibri model/project.static void
Saves a Solibri model/project to given path.static void
shutdown()
Shuts the application down normally, possibly asking the user for confirmation, for example, if the model has unsaved changes.static void
Shuts the application down without asking any questions.
-
Method Details
-
openModel
Opens a Solibri model/project.- Parameters:
name
- the name of the modelinputStream
- the model input stream- Returns:
- the model information
- Throws:
ModelOpeningException
- the exception if the model opening fails- Since:
- 9.12.1
-
saveModel
Saves a Solibri model/project to given path.- Parameters:
path
- the output path- Throws:
IOException
- the exception if the model saving fails- Since:
- 9.12.3
-
getModel
Returns an interface to the SMC data model. This interface can be used to access raw data objects in the Solibri database. Returns null if there is no model currently open.- Returns:
- the interface to the Solibri data model
- Since:
- 9.10.2
-
getInfoDisplayer
Returns an interface for handling the info view (UI).- Returns:
- the info service
- Since:
- 9.10.3
-
getSelectionBasket
Returns the default selection basket.- Returns:
- the selection basket
- Since:
- 9.10.3
-
getModels
Returns service for accessing models.- Returns:
- the model service
- Since:
- 9.10.3
-
getBcfXml
Returns a service for creating BCF-XML reports.- Returns:
- the issue service
- Since:
- 9.10.3
-
getProject
Returns the instance for accessing saved project file (.smc) information.- Returns:
- the project service
- Since:
- 9.10.3
-
getProduct
Returns the product variant that is running.- Returns:
- the product variant
- Since:
- 9.10.3
-
getProductVersion
Returns the product version that is currently running.- Returns:
- the product version
- Since:
- 9.10.3
-
isBusy
public static boolean isBusy()Returns true when Solibri is busy working on something, for example, importing IFC, Checking, or evaluating classifications.- Returns:
- true when busy
- Since:
- 9.10.3
-
getInformationTakeoff
Returns theInformationTakeoff
instance.- Returns:
- the InformationTakeoff instance
- Since:
- 9.10.8
-
getCurrentUser
Returns the current user using this application.- Returns:
- the current user
- Since:
- 9.10.8
-
getPresentations
Returns all the presentation available in the software. The returned list is unmodifiable. The presentations inside that list might not be.- Returns:
- the presentations
- Since:
- 9.10.8
-
getSettings
Provides access to the settings of the software.- Returns:
- the settings
- Since:
- 9.10.8
-
getCustomViews
Returns a list of custom views that are active in the software. Modifying the returned list does not affect the active views, but modifying the views themselves might.- Returns:
- the list of the views
- Since:
- 9.10.8
-
getChecking
Returns theChecking
that provides information about the softwares checking activities.- Returns:
- the Checking instance
- Since:
- 9.10.6
-
get3D
Returns the 3D interface for accessing 3D related functionality.- Returns:
- the 3D access
- Since:
- 9.10.8
-
getBCF
Returns theBcfApi
that provides information about the BCF communication.- Returns:
- the BCF instance
- Since:
- 9.12.0
-
getLayouts
-
getInternalViews
Returns the Solibri internal views.- Returns:
- the internal views
- Since:
- 9.12.0
-
shutdown
public static void shutdown()Shuts the application down normally, possibly asking the user for confirmation, for example, if the model has unsaved changes. All custom views withView.onApplicationExit()
defined are notified properly.- Since:
- 9.12.0
-
shutdownNow
public static void shutdownNow()Shuts the application down without asking any questions. Custom views withView.onApplicationExit()
defined will NOT be notified.- Since:
- 9.12.0
-
bringToFront
public static void bringToFront()Brings the application to front.- Since:
- 9.12.0
-
createProgressBar
Creates a new progressbar instance with given title and total amount of progress.- Parameters:
title
- the title of the progressbartotal
- the total progress possible- Returns:
- a new progressbar instance
- Since:
- 9.12.0
-
getApplicationFrame
Returns Solibri application frame.- Returns:
- frame the Solibri application frame
- Since:
- 9.12.3
-
closeProject
public static void closeProject()Closes the project normally, possibly asking the user for confirmation, for example, if the project has unsaved changes.- Since:
- 9.12.7
-
closeProjectNow
public static void closeProjectNow()Closes the project without asking any questions.- Since:
- 9.12.7
-