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 org.bigwiv.blastgraph.gui.graphvisualization.VertexShape.java

public class VertexShape extends AbstractVertexShapeTransformer<HitVertex>
        implements Transformer<HitVertex, Shape> {

    protected BlastGraph<HitVertex, ValueEdge> graph;

    // protected AffineTransform scaleTransform = new AffineTransform();

From source file logicProteinHypernetwork.networkStates.NetworkEntityToMinimalNetworkStates.java

/**
 * Calculates minimal network states for a network entity.
 * 
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class NetworkEntityToMinimalNetworkStates

From source file nz.ac.waikato.modeljunit.gui.visualisaton.VertexEdgePaintTransformer.java

/**
 * @author Jerramy Winchester
 *
 */
public class VertexEdgePaintTransformer<V, E> implements Transformer<V, Paint> {

From source file nz.ac.waikato.modeljunit.gui.visualisaton.VertexPaintTransformer.java

/**
 * This class is responsible for painting the vertices of a graph the correct colour.
 * @author Jerramy Winchester
 *
 * @param <V>   The vertecies
 * @param <E>   The edges

From source file cz.cuni.mff.ksi.jinfer.treeruledisplayer.logic.VertexColorTransformer.java

/**
 * Transformer for Rule Tree Vertex which transform {@link Regexp} into Vertex color.
 * @author sviro
 */
public class VertexColorTransformer implements Transformer<Regexp<? extends AbstractNamedNode>, Paint> {

From source file inet.CalculationNetworkEditor.Transformers.EdgePaintTransformer.java

/**
 *
 * @author andre
 */
public class EdgePaintTransformer<V, E> implements Transformer<E, Paint> {

From source file com.github.errantlinguist.latticevisualiser.EdgeFontTransformer.java

/**
 * A {@link Transformer} for deriving the {@link Font} to use for drawing an
 * edge from the respective {@link Edge} characteristics it represents.
 * 
 * @author Todd Shore
 * @version 2011-11-13

From source file de.d3web.empiricaltesting.casevisualization.jung.VertexColorTransformer.java

/**
 * This class transforms RatedTestCases which are the vertices of our graph into
 * colors.
 * 
 * @author Sebastian Furth
 * 

From source file de.d3web.empiricaltesting.casevisualization.jung.EdgeTransformer.java

/**
 * This class transforms (Edge)Findings which are the edges of our graph into a
 * nice formatted String for rendering.
 * 
 * @author Sebastian Furth
 * 

From source file joshua.ui.tree_visualizer.DerivationTreeTransformer.java

public class DerivationTreeTransformer implements Transformer<Node, Point2D> {
    private TreeLayout<Node, DerivationTreeEdge> treeLayout;
    private DerivationTree graph;
    private Node root;
    private Node sourceRoot;