Uses of Class
com.sun.electric.database.text.Name

Packages that use Name
com.sun.electric.database Package for the Electric database. 
com.sun.electric.database.hierarchy Package for hierarchy (cell instances inside of cells). 
com.sun.electric.database.id Package for Ids in the Electric database. 
com.sun.electric.database.network Package for handling network control in Electric. 
com.sun.electric.database.prototype Package for the prototype classes in Electric. 
com.sun.electric.database.text Package for handling text. 
com.sun.electric.database.topology Package for connected Nodes and Arcs. 
com.sun.electric.technology Package for handling technology information. 
 

Uses of Name in com.sun.electric.database
 

Fields in com.sun.electric.database declared as Name
static Name ImmutableArcInst.BASENAME
          prefix for autonameing.
 Name ImmutableNodeInst.name
          name of this ImmutableNodeInst.
 Name ImmutableExport.name
          name of this ImmutableExport.
 Name ImmutableArcInst.name
          name of this ImmutableArcInst.
 

Methods in com.sun.electric.database that return Name
static Name ImmutableExport.validExportName(java.lang.String name, boolean busAllowed)
          Returns name key of string if string is a valid Export name, null if not.
 

Methods in com.sun.electric.database with parameters of type Name
static ImmutableExport ImmutableExport.newInstance(ExportId exportId, Name name, TextDescriptor nameDescriptor, int originalNodeId, PortProtoId originalPortId, boolean alwaysDrawn, boolean bodyOnly, PortCharacteristic characteristic)
          Returns new ImmutableExport object.
static ImmutableArcInst ImmutableArcInst.newInstance(int arcId, ArcProtoId protoId, Name name, TextDescriptor nameDescriptor, int tailNodeId, PortProtoId tailPortId, EPoint tailLocation, int headNodeId, PortProtoId headPortId, EPoint headLocation, long gridExtendOverMin, int angle, int flags)
          Returns new ImmutableArcInst object.
static ImmutableNodeInst ImmutableNodeInst.newInstance(int nodeId, NodeProtoId protoId, Name name, TextDescriptor nameDescriptor, Orientation orient, EPoint anchor, EPoint size, int flags, int techBits, TextDescriptor protoDescriptor)
          Returns new ImmutableNodeInst or ImmutableIconInst object.
 ImmutableNodeInst ImmutableNodeInst.withName(Name name)
          Returns ImmutableNodeInst which differs from this ImmutableNodeInst by name.
 ImmutableExport ImmutableExport.withName(Name name)
          Returns ImmutableExport which differs from this ImmutableExport by name.
 ImmutableArcInst ImmutableArcInst.withName(Name name)
          Returns ImmutableArcInst which differs from this ImmutableArcInst by name.
 

Uses of Name in com.sun.electric.database.hierarchy
 

Methods in com.sun.electric.database.hierarchy that return Name
 Name Cell.getBasename()
          Method to return the basename for autonaming instances of this Cell.
 Name Nodable.getNameKey()
          Method to return the name key of this Nodable.
 Name Export.getNameKey()
          Method to return the name key of this Export.
 Name Cell.getNodeAutoname(Name basename)
          Method to return unique autoname for NodeInst in this cell.
 

Methods in com.sun.electric.database.hierarchy with parameters of type Name
 Export Cell.findExport(Name name)
          Method to find a named Export on this Cell.
 PortProto Cell.findPortProto(Name name)
          Method to find the PortProto that has a particular Name.
 Name Cell.getNodeAutoname(Name basename)
          Method to return unique autoname for NodeInst in this cell.
 boolean Cell.isUniqueName(Name name, java.lang.Class cls, ElectricObject exclude)
          Method to determine whether a name is unique in this Cell.
 

Uses of Name in com.sun.electric.database.id
 

Methods in com.sun.electric.database.id that return Name
 Name IdReader.readNameKey()
          Reads Name key.
 

Methods in com.sun.electric.database.id with parameters of type Name
 void IdWriter.writeNameKey(Name nameKey)
          Writes Name key.
 

Uses of Name in com.sun.electric.database.network
 

Methods in com.sun.electric.database.network that return Name
 Name Netlist.getBusName(ArcInst ai)
          Method to return the name of the bus on this ArcInst.
 Name Global.getNameKey()
          Returns name key of this Global signal.
 

Uses of Name in com.sun.electric.database.prototype
 

Methods in com.sun.electric.database.prototype that return Name
 Name PortProto.getNameKey()
          Method to return the name key of this PortProto.
 

Methods in com.sun.electric.database.prototype with parameters of type Name
 PortProto NodeProto.findPortProto(Name name)
          Method to find the PortProto that has a particular Name.
 

Uses of Name in com.sun.electric.database.text
 

Methods in com.sun.electric.database.text that return Name
static Name Name.findName(java.lang.String ns)
          Method to return the name object for this string.
 Name Name.findSuffixed(int i)
          Returns the name obtained from base of this simple name by adding numerical suffix.
 Name Name.getBasename()
          Returns basename of temporary Name.
 Name Name.subname(int i)
          Returns subname of a bus name.
 

Methods in com.sun.electric.database.text with parameters of type Name
 int Name.compareTo(Name name)
          Compares this Name with the specified Name for order.
 

Uses of Name in com.sun.electric.database.topology
 

Methods in com.sun.electric.database.topology that return Name
 Name NodeInst.getBasename()
          Returns the basename for autonaming.
 Name NodeInst.getNameKey()
          Method to return the name key of this NodeInst.
 Name ArcInst.getNameKey()
          Method to return the name key of this ArcInst.
 

Methods in com.sun.electric.database.topology with parameters of type Name
protected static boolean NodeInst.checkNameKey(Name name, Cell parent)
          Method to check the new name key of a NodeInst.
 Poly PortInst.computeTextPoly(EditWindow0 wnd, Variable var, Name name)
           
 

Uses of Name in com.sun.electric.technology
 

Methods in com.sun.electric.technology that return Name
 Name PrimitiveNode.Function.getBasename()
          Returns a base name of this Function for autonaming.
 Name PrimitivePort.getNameKey()
          Method to return the name key of this PrimitivePort.
 

Methods in com.sun.electric.technology with parameters of type Name
 PortProto PrimitiveNode.findPortProto(Name name)
          Method to find the PortProto that has a particular Name.