Package org.jboss.util.graph

Examples of org.jboss.util.graph.Graph


/*  90 */     return map;
/*     */   }
/*     */
/*     */   protected void buildGraph(Map<String, String> properties)
/*     */   {
/* 100 */     this.graph = new Graph();
/* 101 */     this.root = this.vertexFactory.rootVertex();
/* 102 */     this.graph.setRootVertex(this.root);
/* 103 */     for (String key : properties.keySet())
/*     */     {
/* 105 */       String value = (String)properties.get(key);
View Full Code Here


/*     */   }
/*     */
/*     */   public Graph<Map<String, ManagedObject>> getDeepManagedObjects(String name) throws DeploymentException
/*     */   {
/* 679 */     DeploymentContext context = getDeploymentContext(name);
/* 680 */     Graph managedObjectsGraph = new Graph();
/* 681 */     Vertex parent = new Vertex(context.getName());
/* 682 */     managedObjectsGraph.setRootVertex(parent);
/* 683 */     Map managedObjects = getManagedObjects(context);
/* 684 */     parent.setData(managedObjects);
/* 685 */     processManagedObjects(context, managedObjectsGraph, parent);
/*     */
/* 687 */     return managedObjectsGraph;
View Full Code Here

TOP

Related Classes of org.jboss.util.graph.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.