Package gld

Examples of gld.GLDException


      view = new TotalWaitTrackingView(model.getCurCycle(), model);
    else if(type == TOTAL_ROADUSERS)
      view = new TotalRoadusersTrackingView(model.getCurCycle(), model);

   
    if(view == null) throw new GLDException("Invalid tracker type!");
    return genExtTracker(model, controller, view);
  }
View Full Code Here


    if(type == SPECIAL_WAIT)
      view = new SpecialNodeWaitTrackingView(model.getCurCycle(), node);
    else if(type == SPECIAL_ROADUSERS)
      view = new NodeRoadusersTrackingView(model.getCurCycle(), node);
   
    if(view == null) throw new GLDException("Invalid tracker type!")
    return genExtTracker(model, controller, view);
  }
View Full Code Here

    if(type == JUNCTION_WAIT)
      view = new JunctionWaitTrackingView(model.getCurCycle(), junction);
    else if(type == JUNCTION_ROADUSERS)
      view = new NodeRoadusersTrackingView(model.getCurCycle(), junction);
   
    if(view == null) throw new GLDException("Invalid tracker type!")
    return genExtTracker(model, controller, view);
  }
View Full Code Here

TOP

Related Classes of gld.GLDException

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.