Package com.comsol.model
Interface SavePointData
-
- All Superinterfaces:
ModelEntity
,PrimitiveModelEntity
public interface SavePointData extends ModelEntity
Container holding selections and hide features used by result features. When solving, a copy of the model is made - a save point model - which is used in postprocessing. The selections and hide features contained by this class refer to the geometry in this copy.
Editing of data in objects of this class may only be done in the following circumstances:
- The geometry on which the postprocessing is done has been modified after solving. In this case selections and hide features may be edited but not created or deleted.
- The geometry on which the postprocessing is done has been removed. In this case selections and hide features may be both edited, created and deleted.
model.selection()
and the hide features inmodel.view()
. Changes there will be synchronized with the data in the class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SavePointGeomList
geom()
Returns containers of selections and hide features on a geometry in the save point model.SavePointGeom
geom(java.lang.String tag)
Returns a container of selections and hide features on a geometry in the save point model.-
Methods inherited from interface com.comsol.model.ModelEntity
active, author, author, comments, comments, dateCreated, dateModified, docMarker, docMarker, help, help, icon, isactive, isActive, label, label, lastModifiedBy, model, model, name, name, resetAuthor, scope, tag, tag, timeCreated, timeModified, version, version
-
Methods inherited from interface com.comsol.model.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
-
-
-
Method Detail
-
geom
SavePointGeomList geom()
Returns containers of selections and hide features on a geometry in the save point model.- Returns:
- Containers of selections and hide features.
-
geom
SavePointGeom geom(java.lang.String tag)
Returns a container of selections and hide features on a geometry in the save point model.- Parameters:
tag
- The container's tag.- Returns:
- Container of selections and hide features.
-
-