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

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/simulation/DigitalAnalysis.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:
32
32
public class DigitalAnalysis extends Analysis<DigitalSignal> {
33
33
        /** a list of all bussed signals in this Analysis */                private List<DigitalSignal> allBussedSignals = new ArrayList<DigitalSignal>();
34
34
 
35
 
    public DigitalAnalysis(Stimuli sd) {
36
 
        super(sd, ANALYSIS_SIGNALS);
 
35
        /**
 
36
         * Constructor for a collection of digital simulation data.
 
37
         * @param sd Stimuli that this analysis is part of.
 
38
         * @param extrapolateToRight true to draw the last value to the right
 
39
         * (useful for IRSIM and other digital simulations).
 
40
         * False to stop drawing signals after their last value
 
41
         * (useful for Spice and other analog simulations).
 
42
         */
 
43
    public DigitalAnalysis(Stimuli sd, boolean extrapolateToRight) {
 
44
        super(sd, ANALYSIS_SIGNALS, extrapolateToRight);
37
45
    }
38
46
    
39
47
    @Override