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

Packages that use NetObject
com.sun.electric.tool.ncc.netlist   
com.sun.electric.tool.ncc.strategy   
com.sun.electric.tool.ncc.trees   
 

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

Subclasses of NetObject in com.sun.electric.tool.ncc.netlist
 class Bipolar
          A Bipolar transistor
 class Mos
          One or more MOS transistors in series.
 class Part
          Part is an intermediate abstract sub-class of NetObject.
 class Port
          An NCC Port holds all the Export names associated with a single NCC Wire.
 class Resistor
           
 class Subcircuit
          A Cell instance that is being treated as a primitive circuit component during a hierarchical netlist comparison
 class Wire
          A Wire represents an electrical equipotential.
 

Methods in com.sun.electric.tool.ncc.netlist that return types with arguments of type NetObject
 java.util.Iterator<NetObject> Port.getConnected()
           
abstract  java.util.Iterator<NetObject> NetObject.getConnected()
           
 

Uses of NetObject in com.sun.electric.tool.ncc.strategy
 

Methods in com.sun.electric.tool.ncc.strategy that return types with arguments of type NetObject
 java.util.HashMap<java.lang.Integer,java.util.List<NetObject>> Strategy.doFor(Circuit c)
          Method doFor(Circuit) process a single Circuit, dividing the circuit according to this strategy, and placing the NetObjects of the Circuit into new Circuits mapped in the return according to the separation Integer.
 java.util.HashMap<java.lang.Integer,java.util.List<NetObject>> StratDebug.doFor(Circuit c)
           
 java.util.HashMap<java.lang.Integer,java.util.List<NetObject>> StratCheckSizes.doFor(Circuit c)
           
 java.util.HashMap<java.lang.Integer,java.util.List<NetObject>> StratCheck.doFor(Circuit j)
           
 

Methods in com.sun.electric.tool.ncc.strategy with parameters of type NetObject
 java.lang.Integer Strategy.doFor(NetObject n)
          doFor(NetObject) tests the NetObject to decide its catagory.
 java.lang.Integer StratSizes.doFor(NetObject n)
           
 java.lang.Integer StratRandomMatch.doFor(NetObject n)
           
 java.lang.Integer StratPrint.doFor(NetObject n)
           
 java.lang.Integer StratPortName.doFor(NetObject n)
           
 java.lang.Integer StratPartType.doFor(NetObject n)
           
 java.lang.Integer StratPartPopularity.doFor(NetObject n)
           
 java.lang.Integer StratHashWires.doFor(NetObject n)
           
 java.lang.Integer StratHashParts.doFor(NetObject n)
           
 java.lang.Integer StratDebug.doFor(NetObject n)
           
 java.lang.Integer StratCount.doFor(NetObject n)
          doFor(NetObject) counts Wires and Parts.
 java.lang.Integer StratCheckSizes.doFor(NetObject n)
           
 java.lang.Integer StratCheck.doFor(NetObject n)
           
 

Uses of NetObject in com.sun.electric.tool.ncc.trees
 

Methods in com.sun.electric.tool.ncc.trees that return types with arguments of type NetObject
 java.util.HashMap<java.lang.Integer,java.util.List<NetObject>> Circuit.apply(Strategy js)
           
 java.util.Iterator<NetObject> Circuit.getNetObjs()
           
 

Methods in com.sun.electric.tool.ncc.trees with parameters of type NetObject
 void Circuit.adopt(NetObject n)
           
 

Method parameters in com.sun.electric.tool.ncc.trees with type arguments of type NetObject
 void EquivRecord.getNetObjsFromEntireTree(java.util.List<java.util.List<NetObject>> matched, java.util.List<java.util.List<NetObject>> notMatched)
          Get all NetObjects contained by an EquivRecord subtree.
 void EquivRecord.getNetObjsFromEntireTree(java.util.List<java.util.List<NetObject>> matched, java.util.List<java.util.List<NetObject>> notMatched)
          Get all NetObjects contained by an EquivRecord subtree.
static Circuit Circuit.please(java.util.List<NetObject> netObjs)