Package ejmf.toolkit.multiplayer

Examples of ejmf.toolkit.multiplayer.TrackList


    private MultiPlayer mp;

    public void init() {
  boolean loop;
  String[] rawmix = Utility.vectorizeParameter(this, "TRACKDATA");
  TrackList trackList = TrackList.parseTrackData(rawmix);

  if (trackList.getNumberOfTracks() > 0) {
      addContainerListener(this);
      mp = new MultiPlayer(trackList,
          new TimerMultiPlayerControl(trackList));

      String ls;
View Full Code Here


  /*
   * Create a TrackList of empty Tracks based
   * on input argument.
   */
  trackList = new TrackList(numberOfTracks);
  for (int i = 0; i < numberOfTracks; i++) {
      Track track  = new Track(i);
      trackList.addTrack(track);
  }

View Full Code Here

TOP

Related Classes of ejmf.toolkit.multiplayer.TrackList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.