Package com.comsol.model
Interface ViewList
-
- All Superinterfaces:
IListMove
,java.lang.Iterable<View>
,ModelEntity
,ModelEntityList<View>
,PrimitiveModelEntity
- All Known Subinterfaces:
AppViewList
,ComponentViewList
,SavePointViewList
public interface ViewList extends ModelEntityList<View>, IListMove
List of views.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description View
copyToGeometry(java.lang.String newTag, java.lang.String tag, java.lang.String geom)
Creates a copy of a view and inserts it to this list and assigns it to the given geometry.View
copyToWorkPlane(java.lang.String newTag, java.lang.String tag, java.lang.String geom, java.lang.String workPlane)
Creates a copy of a view and inserts it to this list and assigns it to the given work plane.View
create(java.lang.String tag, int viewdim)
Create a view for a dimension.View
create(java.lang.String tag, java.lang.String geom)
Creates a view for a geometry.View
create(java.lang.String tag, java.lang.String geom, java.lang.String workPlane)
Creates a workplane view for a geometry.-
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.ModelEntityList
clear, copy, copy, copyTo, duplicate, duplicateTo, get, index, remove, size, tags, uniquetag
-
Methods inherited from interface com.comsol.model.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
-
-
-
Method Detail
-
copyToGeometry
View copyToGeometry(java.lang.String newTag, java.lang.String tag, java.lang.String geom)
Creates a copy of a view and inserts it to this list and assigns it to the given geometry. The dimension of the source view and the geometry must match.- Parameters:
newTag
- The tag of the new view.tag
- Tag of the view to copy.geom
- Tag of geometry to assign copy to.- Returns:
- The new view.
-
copyToWorkPlane
View copyToWorkPlane(java.lang.String newTag, java.lang.String tag, java.lang.String geom, java.lang.String workPlane)
Creates a copy of a view and inserts it to this list and assigns it to the given work plane. The dimension of the source view must be 2.- Parameters:
newTag
- The tag of the new view.tag
- Tag of the view to copy.geom
- Tag of geometry containing the work plane.workPlane
- Tag of work plane.- Returns:
- The new view.
-
create
View create(java.lang.String tag, java.lang.String geom)
Creates a view for a geometry.- Parameters:
tag
- View tag.geom
- Geometry tag.- Returns:
- Created view.
-
create
View create(java.lang.String tag, int viewdim)
Create a view for a dimension.- Parameters:
tag
- View tag.viewdim
- View dimension.- Returns:
- Created view.
-
create
View create(java.lang.String tag, java.lang.String geom, java.lang.String workPlane)
Creates a workplane view for a geometry.- Parameters:
tag
- View tag.geom
- Geometry tag.workPlane
- Workplane tag.- Returns:
- Created view.
-
-