View Javadoc
1   /*
2   * Copyright (c) 2003, The JUNG Authors 
3   *
4   * All rights reserved.
5   *
6   * This software is open-source under the BSD license; see either
7   * "license.txt" or
8   * https://github.com/jrtom/jung/blob/master/LICENSE for a description.
9   */
10  package edu.uci.ics.jung.visualization.picking;
11  
12  
13  
14  /**
15   * An interface for classes that return information regarding whether a 
16   * given graph element (vertex or edge) has been selected.
17   * 
18   * @author danyelf
19   */
20  public interface PickedInfo<T> {
21  
22  	public boolean isPicked(T t);
23  }