Package perestrojka.common

Examples of perestrojka.common.Edge


    ret = new ArrayList<ConversionStep>();
    Vertex predecessor = null;

    Vertex activeVertex = targetVertex;
    while ((predecessor = activeVertex.getPredecessor()) != null) {
      Edge edge = findEdge(predecessor, activeVertex);
      ret.add(0, new ConversionStep(activeVertex.getFormat(), edge.getConversionExtension()));
      activeVertex = predecessor;
    }
   
    // add to cache
    cache.add(sourceFormat, targetFormat, ret);
View Full Code Here


          }
         
          if (sourceVertex.equals(targetVertex)) {
            continue;
          }
          Edge edge = new Edge(sourceVertex,
              targetVertex,
              extDesc.getConversionExtension());
          if (!E.contains(edge)) {
            E.add(edge);
            Logger.logInfo("adding edge: " +edge, this.getClass());
View Full Code Here

TOP

Related Classes of perestrojka.common.Edge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.