~ubuntu-branches/ubuntu/jaunty/electric/jaunty

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/io/output/SpiceRCSimple.java

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-01-08 02:05:08 UTC
  • mfrom: (1.1.2 upstream) (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090108020508-0h3li7zt9mu5gf0i
Tags: 8.08-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
/**
59
59
 * This is the simple-RC parasitics extractor for the Spice netlist writer.
60
60
 */
61
 
public class SpiceRCSimple
 
61
public class SpiceRCSimple extends SpiceParasiticsGeneral
62
62
{
63
 
    /** key of wire capacitance. */     private static final Variable.Key ATTR_C = Variable.newKey("ATTR_C");
64
 
    /** key of wire resistance. */      private static final Variable.Key ATTR_R = Variable.newKey("ATTR_R");
65
 
 
66
 
        /** List of segmented nets */   private List<SpiceSegmentedNets> segmentedParasiticInfo;
67
 
        /** current segmented nets */   private SpiceSegmentedNets curSegmentedNets;
68
 
 
69
63
        SpiceRCSimple()
70
64
        {
71
65
                segmentedParasiticInfo = new ArrayList<SpiceSegmentedNets>();