View Javadoc
1   package org.opentrafficsim.road.gtu.strategical;
2   
3   import org.opentrafficsim.core.gtu.GTU;
4   import org.opentrafficsim.core.gtu.GTUDirectionality;
5   import org.opentrafficsim.core.gtu.GTUType;
6   import org.opentrafficsim.core.gtu.plan.tactical.TacticalPlanner;
7   import org.opentrafficsim.core.network.Link;
8   import org.opentrafficsim.core.network.LinkDirection;
9   import org.opentrafficsim.core.network.NetworkException;
10  import org.opentrafficsim.core.network.Node;
11  import org.opentrafficsim.road.gtu.lane.driver.LaneBasedBehavioralCharacteristics;
12  
13  /**
14   * <p>
15   * Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
16   * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
17   * </p>
18   * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
19   * initial version Mar 31, 2016 <br>
20   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
21   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
22   */
23  public class LaneBasedStrategicalPlannerNone extends AbstractLaneBasedStrategicalPlanner
24  {
25  
26      /**
27       * 
28       */
29      public LaneBasedStrategicalPlannerNone()
30      {
31          super(new LaneBasedBehavioralCharacteristics(null, null));
32      }
33  
34      /** {@inheritDoc} */
35      @Override
36      public TacticalPlanner generateTacticalPlanner(GTU gtu)
37      {
38          return null;
39      }
40  
41      /** {@inheritDoc} */
42      @Override
43      public Node nextNode(Link link, GTUDirectionality direction, GTUType gtuType) throws NetworkException
44      {
45          return null;
46      }
47  
48      /** {@inheritDoc} */
49      @Override
50      public LinkDirection nextLinkDirection(Link link, GTUDirectionality direction, GTUType gtuType)
51          throws NetworkException
52      {
53          return null;
54      }
55  
56      /** {@inheritDoc} */
57      @Override
58      public Node nextNode(Node node, Link previousLink, GTUType gtuType) throws NetworkException
59      {
60          return null;
61      }
62  
63      /** {@inheritDoc} */
64      @Override
65      public LinkDirection nextLinkDirection(Node node, Link previousLink, GTUType gtuType) throws NetworkException
66      {
67          return null;
68      }
69  
70  }
71