1 package nl.tudelft.goal.ut2004.selector;
2
3 import java.util.Collection;
4
5 import cz.cuni.amis.pogamut.base3d.worldview.object.ILocated;
6
7 /**
8 * Selects a location given before hand.
9 *
10 * @author mpkorstanje
11 *
12 */
13 public class None extends ContextSelector {
14
15
16 public None() {
17 }
18
19 @Override
20 public ILocated select(Collection<? extends ILocated> targets) {
21 return null;
22 }
23
24 @Override
25 public String toString() {
26 return "None";
27 }
28
29
30
31 }