Example usage for org.apache.commons.collections15 Transformer interface-usage

List of usage examples for org.apache.commons.collections15 Transformer interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections15 Transformer interface-usage.

Usage

From source file edu.uci.ics.jung.algorithms.layout.util.RandomLocationTransformer.java

/**
 * Transforms the input type into a random location within
 * the bounds of the Dimension property.
 * This is used as the backing Transformer for the LazyMap
 * for many Layouts,
 * and provides a random location for unmapped vertices

From source file edu.uci.ics.jung.algorithms.layout3d.RandomLocationTransformer.java

/**
 * Transforms the input type into a random location within
 * the bounds of the Dimension property.
 * This is used as the backing Transformer for the LazyMap
 * for many Layouts,
 * and provides a random location for unmapped vertex keys

From source file edu.uci.ics.jung.algorithms.layout.Layout.java

/**
 * A generalized interface is a mechanism for returning (x,y) coordinates 
 * from vertices. In general, most of these methods are used to both control and
 * get information from the layout algorithm.
 * <p>
 * @author danyelf

From source file graphviewer.MyTransformer.java

/**
 * A transformer for our vertices (JUNG2 related staff)
 *
 * @author Voulimeneas Alexios - avoulimeneas@gmail.com
 */
public class MyTransformer implements Transformer<Integer, Paint> {

From source file lu.lippmann.cdb.graph.renderer.CadralEdgeColorTransformer.java

/**
 * 
 * @author Didry
 *
 */
public class CadralEdgeColorTransformer implements Transformer<CEdge, Paint> {

From source file edu.zju.cs.ooobgy.visualization.layout.Layout.java

/**
 * A generalized interface is a mechanism for returning (x,y) coordinates 
 * from vertices. In general, most of these methods are used to both control and
 * get information from the layout algorithm.
 * <p>
 * @author danyelf

From source file de.tuilmenau.ics.graph.Transformer.java

/**
 * Interface reduces dependency for apache stuff for user of graph classes.
 */
public interface Transformer<Input, Output> extends org.apache.commons.collections15.Transformer<Input, Output> {
}

From source file edu.uci.ics.jung.algorithms.layout3d.Layout.java

/**
  * @author tom nelson
 */
public interface Layout<V, E> extends Transformer<V, Point3f> {

    /**

From source file edu.uci.ics.jung.visualization.decorators.ConstantDirectionalEdgeValueTransformer.java

/**
 * Returns the constructor-specified value for each edge type.
 * 
 * @author Joshua O'Madadhain
 */
public class ConstantDirectionalEdgeValueTransformer<V, E> implements Transformer<Context<Graph<V, E>, E>, Number> {

From source file edu.zju.cs.ooobgy.visualization.decorators.ConstantDirectionalEdgeValueTransformer.java

/**
 * Returns the constructor-specified value for each edge type.
 * 
 * @author Joshua O'Madadhain
 */
public class ConstantDirectionalEdgeValueTransformer<V, E> implements Transformer<Context<Graph<V, E>, E>, Number> {