~ubuntu-branches/ubuntu/precise/classpath/precise

« back to all changes in this revision

Viewing changes to javax/sound/midi/Track.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2006-05-27 16:11:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060527161115-h6e39eposdt5snb6
Tags: 2:0.91-3
* Install header files to /usr/include/classpath.
* debian/control: classpath: Conflict with jamvm < 1.4.3 and
  cacao < 0.96 (Closes: #368172).

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  /**
55
55
   * The list of MidiEvents for this track. 
56
56
   */
57
 
  protected Vector events;
 
57
  Vector events;
58
58
  
59
59
  // A HashSet to speed processing
60
60
  private HashSet eventSet;
61
 
  
 
61
 
 
62
  // This is only instantiable within this package.
 
63
  Track()
 
64
  {
 
65
  }
 
66
 
62
67
  /**
63
68
   * Add a new event to this track.  Specific events may only be added once.
64
69
   * The event will be inserted into the appropriate spot in the event list