org.opencores.structure
Class Net

java.lang.Object
  |
  +--org.opencores.structure.Net
Direct Known Subclasses:
NetGlobal

public class Net
extends java.lang.Object

simple net type class (has only one output and many inputs), suitable for P&R process


Field Summary
 float cost
          net cost
 java.util.Vector inputs
          all inputs net is connected to
 Net link
          net link - for graph duplication, etc.
 java.lang.String name
          net name
 Node output
          node (only one), that outputs data
 
Constructor Summary
Net()
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

name

public java.lang.String name
net name

inputs

public java.util.Vector inputs
all inputs net is connected to

output

public Node output
node (only one), that outputs data

link

public Net link
net link - for graph duplication, etc.

cost

public float cost
net cost
Constructor Detail

Net

public Net()
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object