Package hu.u_szeged.nbo.geometria.type

Examples of hu.u_szeged.nbo.geometria.type.GeomHalmaz


  public void setPlace(GeomPlace place) {
    this.place = place;
  }

  public void setPlaceByIndex(int placeId) {
    GeomHalmaz places = GeomResources.getInstance().getPlaces();
    for(int i=1; i<=places.gmMeret(); i++){
      GeomPlace place = (GeomPlace)places.gmIedikElem(i);
      if(place.getId() == placeId){
        this.place = place;
        break;
      }
    }
View Full Code Here


 
  /**
   * @return Returns the places.
   */
  public GeomHalmaz getPlaces() {
    return new GeomHalmaz(places.values());
  }
View Full Code Here

  /**
   * @return Returns the teams.
   */
  public GeomHalmaz getTeams() {
    return new GeomHalmaz(teams.values());
  }
View Full Code Here

  /**
   * @return Returns the works.
   */
  public GeomHalmaz getWorks() {
    return new GeomHalmaz(works.values());
  }
View Full Code Here

    Kt = new TreeMap();
    Lt = new TreeMap();
    Iterator iter = resources.getPlaces().iterator();
    while(iter.hasNext()){
      GeomPlace pl = (GeomPlace)iter.next();
      Kt.put(pl, new GeomHalmaz());
      Lt.put(pl, new GeomHalmaz());
    }

    helyekSzama = resources.getPlaces().size();
    eroforrasTipusokSzama = resources.matrixTypePair.getMeret().getX();
    munkaTipusokSzama = resources.matrixTypePair.getMeret().getY();
View Full Code Here

TOP

Related Classes of hu.u_szeged.nbo.geometria.type.GeomHalmaz

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.