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 ch.epfl.lis.gnwgui.jungtransformers.EdgeTransformer.java

/** This transformer defines the edge shapes of the graph visualizations.
 * 
 * @author Thomas Schaffter (firstname.name@gmail.com)
 *
 * @param <E> Edge
 * 

From source file net.femtoparsec.jwhois.text.TextSourceTransformer.java

/**
 * User: Bastien Aracil
 * Date: 23/10/11
 */
public class TextSourceTransformer implements Transformer<SourceResult, TextSourceResult> {

From source file vnreal.algorithms.utils.energy.linkStressTransformers.BackupPathTransformer.java

public class BackupPathTransformer implements Transformer<SubstrateLink, Double> {

    //   private double backupLinkWeight;
    private CommonDemand bwdemand;
    private Collection<SubstrateLink> linksToIgnoreWrtDemands;
    //   private final BackupDemand backupDemand;

From source file vnreal.algorithms.utils.energy.linkStressTransformers.SubstrateLinkStressTransformer.java

public class SubstrateLinkStressTransformer implements Transformer<SubstrateLink, Double> {

    private final BasicVNAssignmentAlgorithm algorithm;
    private final SubstrateNetwork sNetwork;

    private Collection<AbstractDemand> vldemands;

From source file net.panthema.BispanningGame.MyGraphMLReader.java

class MyGraphMLReader implements Transformer<Integer, Point2D> {
    MyGraph newGraph;

    Map<Integer, Point2D> posMap;

    MyGraphMLReader(javax.swing.JPanel panel) throws FileNotFoundException, GraphIOException {

From source file vnreal.algorithms.utils.energy.linkStressTransformers.DisjointPathTransformer.java

public class DisjointPathTransformer implements Transformer<SubstrateLink, Double> {

    //   private double backupLinkWeight;
    private CommonDemand bandwidthDemand;
    private Collection<SubstrateLink> firstPath;
    //   private final BackupDemand backupDemand;

From source file ch.epfl.lis.gnwgui.jungtransformers.ArrowShapeTransformer.java

/** This transformer defines the arrow shapes of the graph visualizations.
 * 
 * @author Thomas Schaffter (firstname.name@gmail.com)
 *
 * @param <V> Node (vertex)
 * @param <E> Edge

From source file org.datacleaner.widgets.visualization.JobGraphLayoutTransformer.java

/**
 * Transformer that makes 2D points for each vertex in the graph.
 */
public class JobGraphLayoutTransformer implements Transformer<Object, Point2D> {

    private static final Logger logger = LoggerFactory.getLogger(JobGraphLayoutTransformer.class);

From source file org.opendaylight.vtn.manager.internal.routing.PathPolicyTransformer.java

/**
 * An implementation of {@link Transformer} that transforms link edge into
 * the cost of the link.
 *
 * <p>
 *   Note that this class is not synchronized.

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

/**
 * This class transforms Rated-Test-Cases which are the vertices of our graph
 * into a nice formatted String for rendering.
 * 
 * @author Sebastian Furth
 *