Uses of Class
step.typedef.Package

Packages that use Package
step.typedef Provides the abstractions that define the run-time versions of STEP types. 
 

Uses of Package in step.typedef
 

Fields in step.typedef declared as Package
static Package Package.ROOT
          The "root" (global) package scope.
 

Methods in step.typedef that return Package
 Package TypeDef.getPackage()
          Get the package that contains the type represented by this definition.
static Package Package.v(String name, Package parent)
          Get the unique package with the given name and parent.
static Package Package.v(String name)
          Get the unique package with the given name.
 Package Package.getParent()
          Get the parent of this package.
 

Methods in step.typedef with parameters of type Package
 RecordDef.Builder RecordDef.Builder.newRecordDef(String name, Package pkg)
          Start building a new record definition with the given name in the given package.
static Package Package.v(String name, Package parent)
          Get the unique package with the given name and parent.
static Type Type.v(String name, Package pkg)
          Get the unique type with the given name in the given package.
 

Constructors in step.typedef with parameters of type Package
DerivedRecordDef(String name, Package pkg, Type parent, boolean cleanInherit)
          Create a new derived record type definition.
TypeDef(String name, Package pkg, List fieldDefs, List modifiers)
           
RecordDef(String name, Package pkg)