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 modalLogic.formula.io.FormulaFormatter.java

/**
 * Provides an interface to tranform a Formula into a String.
 *
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public interface FormulaFormatter<P> extends Transformer<Formula<P>, String> {

From source file Transformer.labelNoeud.java

/**
 *
 * @author IMRAN-DIALLO
 */
public class labelNoeud implements Transformer<Noeud, String> {
    private Hashtable<Noeud, Noeud> mNodeDataTable;

From source file ru.posap.view.graph.transformer.VerticeLabelTransformer.java

/**
 *
 * @author Deneb
 */
public class VerticeLabelTransformer implements Transformer<ModelVertice, String> {

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

public class CadralFontTransformer<E, F> implements Transformer<E, Font> {

    private Font font = new Font("Helvetica", 0, 12);

    private int INITIAL_SIZE = 12;

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

/**
 *
 * @author andre
 */
public class VertexStrokeTransformer<V> implements Transformer<V, Stroke> {
    private float dash[] = { 10.0f };

From source file com.imag.nespros.gui.transformers.CustomVertexIconTransformer.java

/**
 *
 * @author epaln
 */
public class CustomVertexIconTransformer implements Transformer<Device, Icon> {

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

/**
 * 
 * @author didry
 *
 */
public class CadralVertexColorRenderer implements Transformer<CNode, Paint> {

From source file logicProteinHypernetwork.analysis.complexes.NetworkStateToSubnetwork.java

/**
 * Transforms a network state into a protein subnetwork
 *
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class NetworkStateToSubnetwork implements Transformer<NetworkState, ProteinSubnetwork> {

From source file edu.uci.ics.jung.algorithms.filters.Filter.java

/**
 * An interface for classes that return a subset of the input <code>Graph</code>
 * as a <code>Graph</code>.  The <code>Graph</code> returned may be either a
 * new graph or a view into an existing graph; the documentation for the filter
 * must specify which.
 * 

From source file edu.uci.ics.jung.algorithms.util.SettableTransformer.java

/**
 * An interface for classes that can set the value to be returned (from <code>transform()</code>)
 * when invoked on a given input.
 * 
 * @author Joshua O'Madadhain
 */