Package net.sf.fmj.filtergraph.model

Examples of net.sf.fmj.filtergraph.model.NodeModel


 
  private static NodeModel toModel(Node n)
  {
    if (n == null)
      return null;
    final NodeModel result = new NodeModel(n.getPlugInType(), n.getPlugIn().getClass().getName());
   
    for (int i = 0; i < n.getNumDestLinks(); ++i)
    {
      Link link = n.getDestLink(i);
      result.addDestLink(toModel(link));
    }
    return result;
   
  }
View Full Code Here

TOP

Related Classes of net.sf.fmj.filtergraph.model.NodeModel

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.