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.visualization.decorators.InterpolatingVertexSizeTransformer.java

/**
 * Provides vertex sizes that are spaced proportionally between 
 * min_size and max_size depending on 
 * 
 * @author Joshua O'Madadhain
 */

From source file logicProteinHypernetwork.formulas.PerturbationsToFormula.java

/**
 * Generates a conjunction of a priori perturbations.
 * 
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class PerturbationsToFormula implements Transformer<Collection<NetworkEntity>, Formula<NetworkEntity>> {

From source file edu.uci.ics.jung.algorithms.scoring.util.VertexScoreTransformer.java

/**
 * A Transformer convenience wrapper around VertexScorer.
 */
public class VertexScoreTransformer<V, S> implements Transformer<V, S> {
    /**
     * The VertexScorer instance that provides the values returned by <code>transform</code>.

From source file amicity.graphs.android.common.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 renderer.PickableEdgeWriteTransformer.java

/**
 * Paints each edge according to the <code>Paint</code>
 * parameters given in the constructor, so that picked and
 * non-picked edges can be made to look different.
 * 
 * @author Tom Nelson 

From source file amicity.graphs.android.common.Layout.java

public interface Layout extends Transformer<Node, Point2D> {
    void initialize();

    /**
     * provides initial locations for all vertices.
     * @param initializer

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

/**
 * A simple, stateful VertexIconFunction.
 * Stores icons in a Map keyed on the Vertex
 * 
 * @author Tom Nelson 
 *

From source file logicProteinHypernetwork.networkStates.TableauToMinimalNetworkState.java

/**
 * Extracts a minimal network state out of a tableau that contains a minimally
 * constrained satisfying model (Kster, Zamir, Rahmann, 2011).
 * 
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */

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

/**
 * Paints each vertex according to the <code>Paint</code>
 * parameters given in the constructor, so that picked and
 * non-picked vertices can be made to look different.
 */
public class PickableVertexPaintTransformer<V> implements Transformer<V, Paint> {

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

/**
 * An interface for decorators that return a 
 * <code>Shape</code> for a specified edge.
 *  
 * @author Tom Nelson
 */