Uses of Class
com.sun.electric.tool.ncc.netlist.Wire

Packages that use Wire
com.sun.electric.tool.ncc.netlist   
com.sun.electric.tool.ncc.processing   
 

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

Fields in com.sun.electric.tool.ncc.netlist declared as Wire
protected  Wire[] Part.pins
           
 

Methods in com.sun.electric.tool.ncc.netlist that return Wire
 Wire Port.getWire()
           
 

Methods in com.sun.electric.tool.ncc.netlist that return types with arguments of type Wire
 java.util.ArrayList<Wire> NccNetlist.getWireArray()
           
 

Methods in com.sun.electric.tool.ncc.netlist with parameters of type Wire
 void Resistor.connect(Wire ss, Wire ee)
           
 java.lang.String Subcircuit.connectionDescription(Wire w)
           
 java.lang.String Resistor.connectionDescription(Wire w)
           
abstract  java.lang.String Part.connectionDescription(Wire w)
          comma separated list of pins connected to w
 java.lang.String Mos.connectionDescription(Wire w)
           
 java.lang.String Bipolar.connectionDescription(Wire w)
           
 int Part.getHashFor(Wire w)
          The Part must compute a hash code contribution for a Wire to use.
static boolean Mos.joinOnWire(Wire w)
          Merge two series Transistors into a single Transistor.
 int Part.numPinsConnected(Wire w)
          How many pins of this Part are connected to Wire.
 boolean Mos.touchesOneDiffPinAndNoOtherPins(Wire w)
           
 

Constructors in com.sun.electric.tool.ncc.netlist with parameters of type Wire
Bipolar(Bipolar.Type np, NccNameProxy.PartNameProxy name, double area, Wire emit, Wire base, Wire coll)
           
Mos(PartType np, NccNameProxy.PartNameProxy name, double width, double length, Wire src, Wire gate, Wire drn)
          The standard 3 terminal Transistor.
Part(NccNameProxy.PartNameProxy name, Wire[] pins)
           
Port(java.lang.String name, PortCharacteristic type, Wire w)
           
Resistor(PartType type, NccNameProxy.PartNameProxy name, double width, double length, Wire w1, Wire w2)
           
Subcircuit(NccNameProxy.PartNameProxy instName, SubcircuitInfo subcircuitInfo, Wire[] pins)
           
 

Uses of Wire in com.sun.electric.tool.ncc.processing
 

Method parameters in com.sun.electric.tool.ncc.processing with type arguments of type Wire
static LocalPartitionResult LocalPartitioning.doYourJob(java.util.Set<Part> forcedMatchParts, java.util.Set<Wire> forcedMatchWires, NccGlobals globals)
           
static void ForceMatch.doYourJob(java.util.Set<Part> forcedMatchParts, java.util.Set<Wire> forcedMatchWires, NccGlobals g)
          Must be called before any other partitioning occurs.
static void NewLocalPartitionWires.doYourJob(java.util.Set<Wire> forcedMatchWires, NccGlobals globs)