Package com.neptuny.xgrapher.gen.model

Examples of com.neptuny.xgrapher.gen.model.Graph


    } catch (JAXBException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    ObjectFactory factory=new ObjectFactory();
    Graph gra=factory.createGraph();
    List nodi=gra.getNode();
    List archi=gra.getEdge();
   
    //creo 1� nodo
    Node nodo1=factory.createNode();
    nodo1.setId("31457");
    nodo1.setName("CPU_UTIL");
View Full Code Here


  }

  public VisualizationViewer getVv() {

    dataBindingClient = new DataBindingClient(app.getLoader());
    Graph g = dataBindingClient.getStartGraph();
    edu.uci.ics.jung.graph.Graph jungGraph = mapper.toJung(g);

                LengthFunction f = app.getRenderer().getLengthFunction() ;
                VisualizationViewer vv = null ;
                if ( f == null)
View Full Code Here

   * It converts from xml to object Graph
   * @param xml  String of xml
   * @return  Object Graph
   */
  public Graph convertiXmlInGraph(String xml){
    Graph gra=new Graph();
    try{
      StringBuffer xmlStr = new StringBuffer(xml);
      JAXBContext jaxbcontext=JAXBContext.newInstance("net.battlehorse.XGrapher.gen.model");
      Unmarshaller unMarshaller=jaxbcontext.createUnmarshaller();
      JAXBElement<Graph> g= (JAXBElement<Graph>)unMarshaller.unmarshal( new StreamSource( new StringReader( xmlStr.toString() ) ) );
View Full Code Here

    }
   
    private Graph getJaxbGraph() {

            ObjectFactory factory=new ObjectFactory();
            Graph gra=factory.createGraph();
            List nodi=gra.getNode();
            List archi=gra.getEdge();

            Node nodo1=factory.createNode();
            nodo1.setId("31457");
            nodo1.setName("CPU_UTIL");
            nodo1.setDeepness(0);
View Full Code Here

TOP

Related Classes of com.neptuny.xgrapher.gen.model.Graph

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.