API Documentation > Interfaces > Interface ModelItemOwner
Interface ModelItemOwner

package com.ptc.pfc.pfcModelItem;

public interface
ModelItemOwner
extends
com.ptc.pfc.pfcObject.Parent


Description
This is a base class for an object that has model items associated with it (such as a model).
See Also:
Direct Known Subclasses:
Method Summary
/*optional*/ ModelItem
GetItemById (ModelItemType Type, int Id)
Returns the specified model item, given its identifier and type.
/*optional*/ ModelItem
GetItemByName (ModelItemType Type, String Name)
Returns a model item, given a string name and type, if it exists.
/*optional*/ ModelItems
ListItems ( /*optional*/ ModelItemType Type)
Provides a list of model items of the specified type.
Methods Inherited from Interface com.ptc.pfc.pfcObject.Parent :
Method Detail
GetItemByName
/*optional*/ ModelItem
GetItemByName
(ModelItemType Type, String Name)
Returns a model item, given a string name and type, if it exists.
Exceptions thrown (but not limited to):
XToolkitNotFound - This means either:
The specified layer_name does not exist in owner, OR
The item was not found, OR
The function did not find simplified representation in the solid.
See Also:
Manual References:
Parameters:
Type
The type of the model item to locate.
Name
The name of the model item to locate.
Returns:
The model item object, or null, if the item was not found.
GetItemById
/*optional*/ ModelItem
GetItemById
(ModelItemType Type, int Id)
Returns the specified model item, given its identifier and type.
Exceptions thrown (but not limited to):
XToolkitNotExist - This means either:
Feature with such identifier does not exist, OR
Item with such id and type does not exist.
Manual References:
Parameters:
Type
The type of the model item (feature, edge, and so on)
Id
The integer identifier of the model item
Returns:
The model item with the specified attributes, or null if a model item withsuch attributes has not been found.
ListItems
/*optional*/ ModelItems
ListItems
( /*optional*/ ModelItemType Type)
Provides a list of model items of the specified type.
Manual References:
Parameters:
Type
The type of model items to retrieve. If this parameter is null, then allthe model items will be listed.
Note that only those surfaces associated with solid geometry are included in the list of model items when you specify ITEM_SURFACE or null as the Type . Surfaces of Creo Parametric Surface features and Quilts are not included. To obtain a list of the quilt features with their component datum surfaces, specify ITEM_QUILT.
Returns:
The list of model items, or null if no model items of the specified type has been found.
Was this helpful?