edu.uci.ics.jung.visualization.picking.PickedInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jung-visualization Show documentation
Show all versions of jung-visualization Show documentation
Core visualization support for the JUNG project
The newest version!
/*
* Copyright (c) 2003, The JUNG Authors
*
* All rights reserved.
*
* This software is open-source under the BSD license; see either
* "license.txt" or
* https://github.com/jrtom/jung/blob/master/LICENSE for a description.
*/
package edu.uci.ics.jung.visualization.picking;
/**
* An interface for classes that return information regarding whether a
* given graph element (vertex or edge) has been selected.
*
* @author danyelf
*/
public interface PickedInfo {
public boolean isPicked(T t);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy