Class CadCollector

java.lang.Object
com.ptc.windchill.collector.api.cad.CadCollector
All Implemented Interfaces:
Collector

public final class CadCollector extends Object implements Collector
CAD specific collector object able to gather data objects per configured specification and options.
This is specific collector object type with methods for gathering data for CAD source objects.

Supported API: true
Extendable: false
 Here is an example how to create CadCollector new instance and use it to get result.

 CadCollector collector = CadCollector.newInstance(seeds, criteria)
                 .dependents(GatherDependents.ONLY_REQUIRED)
                 .associatedParts(GatherAssociatedParts.ALL)
                 .container(myContainer)
                 .workspace(myWorkspace);

 CadCollectedResult result = collector.collect();

 Required parameters are CAD seeds and navigation criteria, others are optional.
 
See Also: