Uses of Class
step.typedef.RecordDef.Builder

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

Uses of RecordDef.Builder in step.typedef
 

Methods in step.typedef that return RecordDef.Builder
static RecordDef.Builder RecordDef.builder()
          Get the builder object for creating new record definitions.
 RecordDef.Builder RecordDef.Builder.newRecordDef(String name)
          Start building a new record definition with the given name in the ROOT package.
 RecordDef.Builder RecordDef.Builder.newRecordDef(String name, String pkgName)
          Start building a new record definition with the given name in the given package name.
 RecordDef.Builder RecordDef.Builder.newRecordDef(String name, Package pkg)
          Start building a new record definition with the given name in the given package.
 RecordDef.Builder RecordDef.Builder.setParent(String parentName)
          Make the definition inherit from another.
 RecordDef.Builder RecordDef.Builder.setParent(String parentName, boolean cleanInherit)
          Make the definition inherit from another.
 RecordDef.Builder RecordDef.Builder.setParent(Type parent)
          Make the definition inherit from another.
 RecordDef.Builder RecordDef.Builder.setParent(Type parent, boolean cleanInherit)
          Make the definition inherit from another.
 RecordDef.Builder RecordDef.Builder.setLabel(String label)
          Set the label for the definition.
 RecordDef.Builder RecordDef.Builder.setDescription(String description)
          Set the description for the definition.
 RecordDef.Builder RecordDef.Builder.addAttribute(Attribute attribute)
          Add a record attribute to the definition.
 RecordDef.Builder RecordDef.Builder.addField(FieldDef fieldDef)
          Add a field to the definition.
 RecordDef.Builder RecordDef.Builder.modifyField(FieldModifier modifier)
          Add a field modifier to the definition.
 RecordDef.Builder RecordDef.Builder.setFactory(RecordFactory factory)
          Set the factory object for the definition.