View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   package cz.cuni.amis.pogamut.usar2004.samples.AirScanner;
6   
7   import java.util.ArrayList;
8   import java.util.List;
9   
10  /**
11   *
12   * @author vejmanm
13   */
14  public class ObstacleSet
15  {
16      List<Obstacle> xOrder = new ArrayList<Obstacle>();
17      List<Obstacle> yOrder = new ArrayList<Obstacle>();
18      public ObstacleSet()
19      {
20          
21      }
22      
23      public void add(Obstacle obstacle)
24      {
25      }
26      
27      private void addX(int at, int start, int stop, Obstacle obstacle)
28      {
29          
30          //if(xOrder.get(at-1).getCorner())
31      }
32  }