Uses of Class
com.sun.electric.database.prototype.PortCharacteristic

Packages that use PortCharacteristic
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.network Package for handling network control in Electric. 
com.sun.electric.database.prototype Package for the prototype classes in Electric. 
com.sun.electric.technology Package for handling technology information. 
com.sun.electric.tool.generator.layout   
com.sun.electric.tool.generator.layout.fill   
com.sun.electric.tool.io.output   
com.sun.electric.tool.ncc.netlist   
 

Uses of PortCharacteristic in com.sun.electric.database
 

Fields in com.sun.electric.database declared as PortCharacteristic
 PortCharacteristic ImmutableExport.characteristic
          PortCharacteristic of this ImmutableExport.
 

Methods in com.sun.electric.database that return PortCharacteristic
static PortCharacteristic ImmutableExport.portCharacteristicFromElib(int elibBits)
          Get PortCharacteristic of Export from ELIB user bits.
 

Methods in com.sun.electric.database with parameters of type PortCharacteristic
static ImmutableExport ImmutableExport.newInstance(ExportId exportId, Name name, TextDescriptor nameDescriptor, int originalNodeId, PortProtoId originalPortId, boolean alwaysDrawn, boolean bodyOnly, PortCharacteristic characteristic)
          Returns new ImmutableExport object.
 ImmutableExport ImmutableExport.withCharacteristic(PortCharacteristic characteristic)
          Returns ImmutableExport which differs from this ImmutableExport by port characteristic.
 

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

Methods in com.sun.electric.database.hierarchy that return PortCharacteristic
 PortCharacteristic Export.getCharacteristic()
          Method to return the PortCharacteristic of this Export.
 

Methods in com.sun.electric.database.hierarchy with parameters of type PortCharacteristic
static Export Export.newInstance(Cell parent, ExportId exportId, java.lang.String name, TextDescriptor nameTextDescriptor, PortInst originalPort, boolean alwaysDrawn, boolean bodyOnly, PortCharacteristic characteristic, ErrorLogger errorLogger)
          Factory method to create an Export
 void Export.setCharacteristic(PortCharacteristic characteristic)
          Method to set the PortCharacteristic of this Export.
 

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

Methods in com.sun.electric.database.network that return PortCharacteristic
 PortCharacteristic Global.Set.getCharacteristic(Global global)
          Returns characteristic of a specified Global in a set.
 

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

Methods in com.sun.electric.database.prototype that return PortCharacteristic
static PortCharacteristic PortCharacteristic.findCharacteristic(int bits)
          Method to find the characteristic associated with the given bit value.
static PortCharacteristic PortCharacteristic.findCharacteristic(java.lang.String wantName)
          Method to find the characteristic associated with the given name.
static PortCharacteristic PortCharacteristic.findCharacteristicShort(java.lang.String shortName)
          Method to find the characteristic associated with the given short name.
 PortCharacteristic PortProto.getCharacteristic()
          Method to return the PortCharacteristic of this PortProto.
static PortCharacteristic PortCharacteristic.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PortCharacteristic[] PortCharacteristic.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.sun.electric.database.prototype that return types with arguments of type PortCharacteristic
static java.util.List<PortCharacteristic> PortCharacteristic.getOrderedCharacteristics()
          Method to return an iterator over all of the PortCharacteristics.
 

Uses of PortCharacteristic in com.sun.electric.technology
 

Methods in com.sun.electric.technology that return PortCharacteristic
 PortCharacteristic PrimitivePort.getCharacteristic()
          Method to return the PortCharacteristic of this PortProto.
 

Methods in com.sun.electric.technology with parameters of type PortCharacteristic
static PrimitivePort PrimitivePort.newInstance(Technology tech, PrimitiveNode parent, ArcProto[] portArcs, java.lang.String protoName, int portAngle, int portRange, int portTopology, PortCharacteristic characteristic, EdgeH left, EdgeV bottom, EdgeH right, EdgeV top)
          Method to create a new PrimitivePort from the parameters.
 

Uses of PortCharacteristic in com.sun.electric.tool.generator.layout
 

Methods in com.sun.electric.tool.generator.layout that return PortCharacteristic
 PortCharacteristic StdCellParams.getGndExportRole()
           
 PortCharacteristic StdCellParams.getNmosWellTieRole()
           
 PortCharacteristic StdCellParams.getPmosWellTieRole()
           
 PortCharacteristic StdCellParams.getVddExportRole()
           
 

Methods in com.sun.electric.tool.generator.layout with parameters of type PortCharacteristic
static Export LayoutLib.newExport(Cell cell, java.lang.String name, PortCharacteristic role, ArcProto ap, double w, double x, double y)
          Create an export for a particular layer.
 void StdCellParams.setGndExportRole(PortCharacteristic gndRole)
           
 void StdCellParams.setVddExportRole(PortCharacteristic vddRole)
           
 

Uses of PortCharacteristic in com.sun.electric.tool.generator.layout.fill
 

Fields in com.sun.electric.tool.generator.layout.fill declared as PortCharacteristic
static PortCharacteristic FillCell.GND_CHARACTERISTIC
           
static PortCharacteristic FillCell.VDD_CHARACTERISTIC
           
 

Uses of PortCharacteristic in com.sun.electric.tool.io.output
 

Fields in com.sun.electric.tool.io.output declared as PortCharacteristic
 PortCharacteristic EDIFEquiv.NodeEquivalence.exortedType
           
 

Uses of PortCharacteristic in com.sun.electric.tool.ncc.netlist
 

Methods in com.sun.electric.tool.ncc.netlist that return PortCharacteristic
 PortCharacteristic Port.getType()
           
 

Methods in com.sun.electric.tool.ncc.netlist with parameters of type PortCharacteristic
 Port Wire.addExport(java.lang.String portName, PortCharacteristic type, boolean oneNamePerPort)
          add a Port to this Wire
 void Port.addExport(java.lang.String nm, PortCharacteristic type, boolean oneNamePerPort)
           
 

Constructors in com.sun.electric.tool.ncc.netlist with parameters of type PortCharacteristic
Port(java.lang.String name, PortCharacteristic type, Wire w)