Package hu.u_szeged.nbo.res_alloc.model.container

Examples of hu.u_szeged.nbo.res_alloc.model.container.PlaceContainer


  }
 
  private void loadPlaces(String filename)
  throws FileNotFoundException, IOException {
    try {
      PlaceContainer places = new PlaceContainer(model);
      StringTokenizer tokenizer = this.openFile(filename);
     
      //ignore header fields
      tokenizer.nextToken();
      tokenizer.nextToken();
     
      while (tokenizer.hasMoreTokens()) {
        Place place = new Place();
        int id = Integer.parseInt(tokenizer.nextToken());
        place.setId(id);
        String name = tokenizer.nextToken();
        place.setName(name);
       
        places.putPlace(id, place);
      }
     
      model.setPlaceContainer(places);
    }
    catch (FileNotFoundException e) {
View Full Code Here

TOP

Related Classes of hu.u_szeged.nbo.res_alloc.model.container.PlaceContainer

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.