~ubuntu-branches/ubuntu/maverick/electric/maverick

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/simulation/Stimuli.java

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2010-01-09 16:26:04 UTC
  • mfrom: (1.1.4 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100109162604-1ypvmy8ijmlc6oq7
Tags: 8.10-1
* New upstream version.
* debian/control
  - Add libjava3d-java and quilt build dependencies.
  - Update standards version to 3.8.3.
  - Add libjava3d-java as recommends to binary package.
* debian/rules
  - Use quilt patch system instead of simple patchsys.
  - Add java3d related jar files to DEB_JARS.
* debian/patches/*
  - Update as per current upstream source. Convert to quilt.
* debian/ant.properties
  - Do not disable 3D plugin anymore.
  - Use new property to disable compilation of OS X related classes.
* debian/wrappers/electric
  - Add java3d related jar files to runtime classpath.
* debian/README.source
  - Change text to the appropriate one for quilt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        /** the list of analyses in this Stimuli */                                     private List<Analysis> analysisList;
65
65
        /** control points when signals are selected */                         private HashMap<Signal,Double[]> controlPointMap;
66
66
 
67
 
        /**
 
67
    /** Cached version of net delimiter**/                      private String delim = Simulation.getSpiceExtractedNetDelimiter();
 
68
    /** Cached version of use of legacy simulation code **/     private boolean legacy = Simulation.isUseLegacySimulationCode();
 
69
 
 
70
    /**
68
71
         * Constructor to build a new Simulation Data object.
69
72
         */
70
73
        public Stimuli()
105
108
                return an;
106
109
        }
107
110
 
108
 
        public int getNumAnalyses() { return analysisList.size(); }
 
111
    public String getNetDelimiter() { return delim;}
 
112
 
 
113
    public boolean isUseLegacySimulationCode() { return this.legacy; }
 
114
 
 
115
    public int getNumAnalyses() { return analysisList.size(); }
109
116
 
110
117
        public Iterator<Analysis> getAnalyses() { return analysisList.iterator(); }
111
118