Uses of Interface
org.graffiti.graph.Graph
- 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti
Methods in de.ipk_gatersleben.ag_nw.graffiti that return Graph Modifier and Type Method Description static GraphGraphHelper. createClusterReferenceGraph(Graph graph, HashMap<String,Integer> clusterNodeIDandNumberOfContainingNodes)static GraphGraphHelper. getClusterSubGraph(Graph mainGraph, String validClusterID)Methods in de.ipk_gatersleben.ag_nw.graffiti that return types with arguments of type Graph Modifier and Type Method Description static Collection<Graph>GraphHelper. getConnectedComponentsAsCopy(List<Node> nodes)static Collection<Graph>GraphHelper. getConnectedComponentsAsCopy(Graph graph)builds for all connected components a separate graph and returns them as a collection of graphsMethods in de.ipk_gatersleben.ag_nw.graffiti with parameters of type Graph Modifier and Type Method Description static EdgeGraphHelperBio. addEdgeIfNotExistant(Graph graph, Node nodeA, Node nodeB, boolean directed, CollectionAttribute graphicsAttributeForEdge)static NodeGraphHelperBio. addMapNode(Graph superGraph, KeggPathwayEntry kpe)static NodeGraphHelper. addNodeToGraph(Graph graph, double posx, double posy, double frameThickness_3, double width_25, double height_25, Color frameColor_0_0_0_255, Color fillColor_0_100_250_100)Adds a new node to a graph.static voidGraphHelper. applyUndoableClusterIdAssignment(Graph graph, HashMap<GraphElement,String> ge2newClusterID, String description, boolean enableUndo)static voidGraphHelper. applyUndoableEdgeReversal(Graph graph, Collection<Edge> edges, String description)static intGraphHelper. countOverlapps(Graph g, Vector2d pos, Vector2d size)static byte[][]GraphHelper. createAdjacencyMatrix(Graph g, boolean directed)Creates the adjacency matrix for a given graph.static GraphGraphHelper. createClusterReferenceGraph(Graph graph, HashMap<String,Integer> clusterNodeIDandNumberOfContainingNodes)static voidGraphHelper. displayGraph(Graph g)displays a graph in the mainframestatic voidGraphHelper. enumerateNodePositions(Graph graphInstance, HashMap<CoordinateAttribute,Vector2d> oldPositions)static voidGraphHelper. enumerateNodePositions3d(Graph graphInstance, HashMap<CoordinateAttribute,Vector3d> oldPositions)static ColorNodeTools. getAxisColor(Graph g, Color defaultColor)static ColorNodeTools. getCategoryBackgroundColorA(Graph g, Color defaultColor)static ColorNodeTools. getCategoryBackgroundColorB(Graph g, Color defaultColor)static ColorNodeTools. getCategoryBackgroundColorC(Graph g, Color defaultColor)static GraphGraphHelper. getClusterSubGraph(Graph mainGraph, String validClusterID)static ColorNodeTools. getColorAttributeValue(Graph g, String attName, Color defaultColor)static Collection<Graph>GraphHelper. getConnectedComponentsAsCopy(Graph graph)builds for all connected components a separate graph and returns them as a collection of graphsstatic ArrayList<Node>GraphHelperBio. getEnzymeNodes(Graph g)static ColorNodeTools. getGridColor(Graph g, Color defaultColor)static List<NodeHelper>GraphHelper. getHelperNodes(Graph graph)static Set<Node>GraphHelper. getLeafNodes(Graph graph)static ArrayList<Edge>GraphHelperBio. getMapLinkEdges(Graph g)static ArrayList<Node>GraphHelperBio. getMapLinkNodes(Graph g)static Collection<Edge>GraphHelper. getSelectedOrAllEdges(Selection selection, Graph graph)static Collection<GraphElement>GraphHelper. getSelectedOrAllGraphElements(Graph graph)static Collection<GraphElement>GraphHelper. getSelectedOrAllGraphElements(Selection selection, Graph graph)static List<Node>GraphHelper. getSelectedOrAllNodes(Selection selection, Graph graph)Returns a list of the currently selected nodes.static voidGraphHelper. introduceNewBends(Graph graph, HashSet<Edge> edges, int percent, String shape, int bends, boolean massCenterFromSelection, String description, boolean enableUndo)Add new bends to a graphstatic voidGraphHelper. introduceNewBends(Graph graph, HashSet<Edge> workEdges, int minPercent, String edgeShape, int i, String description, boolean enableUndo)static voidGraphHelper. issueCompleteRedrawForGraph(Graph g)static voidGraphHelper. issueCompleteRedrawForView(View activeView, Graph g)static voidGraphHelper. moveGraph(Graph graph, double offX, double offY)static voidGraphHelper. postUndoableChanges(Graph myGraph, HashMap<CoordinateAttribute,Vector2d> coordinates2oldPositions, HashMap<CoordinateAttribute,Vector2d> coordinates2newPositions, String description)static voidGraphHelper. postUndoableChanges3d(Graph myGraph, HashMap<CoordinateAttribute,Vector3d> coordinates2oldPositions, HashMap<CoordinateAttribute,Vector3d> coordinates2newPositions, String description)static voidGraphHelper. postUndoableNodeAndEdgeAdditions(Graph graph, HashSet<Node> newNodes, HashSet<Edge> newEdges, String description)static voidGraphHelper. printNodeLayout(Graph graph)static voidGraphHelper. removeAllBends(Graph g, boolean enableUndo)Deprecated.static voidGraphHelper. removeBends(Graph graph, Collection<Edge> edges, boolean enableUndo)static voidGraphHelper. setClusterGraphNodeSizeAndPositionFromReferenceGraph(Graph mainGraph, Graph clusterBackgroundGraph, BackgroundTaskStatusProviderSupportingExternalCall statusProvider)static booleanKeggSoapAndPathwayService. writeGML(Graph g, String fileName) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms
Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms with parameters of type Graph Constructor Description ColorHelper(Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.davidtest
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.davidtest with parameters of type Graph Modifier and Type Method Description static List<Node>GrubbsTestAlgorithm. doGrubbsTest(List<Node> nodes, Graph g, double alpha, boolean removeOutliers) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.graph_generation
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.graph_generation that return Graph Modifier and Type Method Description static GraphErdosRenyiGraphGenerator. createGraph(int numberOfNodes, boolean label, double p, boolean directed, boolean selfLoops)static GraphWattsStrogatzGraphGenerator. createGraph(int numberOfNodes, boolean label, int initDegree, double p) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.hamming_distance
Fields in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.hamming_distance declared as Graph Modifier and Type Field Description GraphWorkTask. graph1Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.hamming_distance with parameters of type Graph Modifier and Type Method Description static intHammingCalculator. compareTwoGraphs(Graph graph1, Graph graph2, HashSet<String> nodesGraph1, HashSet<String> nodesGraph2, WorkSettings t)Computes the hamming distance between two given graphsConstructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.hamming_distance with parameters of type Graph Constructor Description WorkTask(HashSet<String> nodesIn1, File graph2fn, int i, int j, String message2, int[][] hammingDistances, Graph graph1, WorkSettings ws, ArrayList<WorkTask> runningThreads)Constructor parameters in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.hamming_distance with type arguments of type Graph Constructor Description HammingCalculator(Collection<Graph> listOfGraphs, ArrayList<File> listOfGraphFileNames, boolean consNodes, boolean consEdges, boolean consEdgeLabels, int nodesDistance, int edgesDistance, boolean computeOrder, int validGraphIndex, String outputDir) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.naive_pattern_finder
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.naive_pattern_finder that return Graph Modifier and Type Method Description GraphUllmannSubraphIsomAdjMatrixState. getPatternGraph()GraphUllmannSubraphIsomAdjMatrixState. getTargetGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.naive_pattern_finder with parameters of type Graph Modifier and Type Method Description static voidPatternAttributeUtils. addAGNWContainer(Graph g)Adds the top level container attribute "AGNW" to the given graph.static voidPatternAttributeUtils. addPatternContainer(Graph g)Adds the pattern container attribute "AGNW.PATTERN" to the given graph.static voidPatternAttributeUtils. checkAndAddAGNWContainer(Graph g)Adds the top level container attribute "AGNW" to the given graph, if it is not already there.static voidPatternAttributeUtils. checkAndAddPatternContainer(Graph g)Adds the pattern container attribute "AGNW.PATTERN" to the given graph, if it is not already there.static booleanPatternAttributeUtils. checkExistenceAGNWContainer(Graph g)Checks, if the top level container attribute "AGNW" exists at the given graph.static booleanPatternAttributeUtils. checkExistencePatternContainer(Graph g)Checks, if the pattern container attribute "AGNW.PATTERN" exists at the given graph.static voidNaivePatternFinderAlgorithm. searchPatterns(Graph graph, List<Graph> patterns, Algorithm optLayoutAlgorithm, boolean ignoreEdgeDirection, boolean startWithLargestCircle, boolean allowOverlap, BackgroundTaskStatusProviderSupportingExternalCall status)Search a number of pattern graphs in the target graph, beginning with the largest pattern (determined by number of nodes)Method parameters in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.naive_pattern_finder with type arguments of type Graph Modifier and Type Method Description static voidNaivePatternFinderAlgorithm. searchPatterns(Graph graph, List<Graph> patterns, Algorithm optLayoutAlgorithm, boolean ignoreEdgeDirection, boolean startWithLargestCircle, boolean allowOverlap, BackgroundTaskStatusProviderSupportingExternalCall status)Search a number of pattern graphs in the target graph, beginning with the largest pattern (determined by number of nodes)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.naive_pattern_finder with parameters of type Graph Constructor Description UllmannSubraphIsomAdjMatrixState(Graph patternGraph, Graph targetGraph, boolean ignoreEdgeDirection) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.ratioview
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.ratioview that return Graph Modifier and Type Method Description GraphRatioViewAlgorithm. executeAndReturnGraph(BackgroundTaskStatusProviderSupportingExternalCall status, boolean sortConsiderClusters, boolean showRangeAxisForNode1, boolean calcLog, NodeSortCommand sortCommand, String selSeriesName1, String selSeriesName2, int selTimePoint)GraphSubstanceRatioCalculationAlgorithm. executeAndReturnGraph(BackgroundTaskStatusProviderSupportingExternalCall status) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.som
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.som that return Graph Modifier and Type Method Description static GraphSOMguiHelper. createCentroidNodesGraph(Map som, String[] columns)Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.algorithms.som with parameters of type Graph Modifier and Type Method Description static voidSOMguiHelper. showSOMcentroidsAndClusterAssignmentSettings(Map som, String[] columns, Graph optSrcGraph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.databases.sib_enzymes
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.databases.sib_enzymes with parameters of type Graph Modifier and Type Method Description static intEnzymeService. getNumberOfEnzymeNodes(Graph graph)Get the number of nodes in this graph which could possible be valid EC numbers. - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.databases.transpath
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.databases.transpath with parameters of type Graph Modifier and Type Method Description voidTranspathPathway. addElementsToGraph(Graph g, String clusterID, HashMap<String,Node> graphElementId2graphNode)voidTranspathReaction. addElementsToGraph(Graph g, String clusterID, HashMap<String,Node> graphElementId2graphNode)static voidTranspathMolecule. connectMoleculeNodes(Graph g, Node moleculeNode1, Node moleculeNode2)NodeTranspathMolecule. getGraphNode(Graph g, String clusterID, HashMap<String,Node> graphElementId2graphNode) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.chart_colors
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.chart_colors with parameters of type Graph Modifier and Type Method Description static ChartColorAttributeChartColorAttribute. getAttribute(Graph graph)static booleanChartColorAttribute. hasAttribute(Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.kegg.kegg_type
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.kegg.kegg_type with parameters of type Graph Modifier and Type Method Description static voidKeggReactionIdAttributeEditor. editReactions(Reaction r, Pathway p, Collection<Gml2PathwayWarningInformation> warnings, Collection<Gml2PathwayErrorInformation> errors, HashMap<Entry,Node> entry2graphNode, Graph graph)static voidKeggReactionIdAttributeEditor. editReactions(GraphElement ge, String currentReactionId, Graph graph, Selection selection) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.kegg.kegg_type.pathway_kegg_operation
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.kegg.kegg_type.pathway_kegg_operation with parameters of type Graph Modifier and Type Method Description static voidPathwayKeggLoading. collapsePathway(Graph graph, String curVal, Node sourceNode)static PathwayPathwayKeggLoading. processInternalMapLinks(Graph baseGraph, Pathway optAddPathway, Vector2d optCenterOfAddGraph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.url_attribute
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.editcomponents.url_attribute with parameters of type Graph Modifier and Type Method Description ActionListenerLoadGraphFileAttributeAction. getActionListener(Attribute displayable, Graph graph, GraphElement ge, boolean performAltCommand)ActionListenerLoadURLattributeAction. getActionListener(Attribute displayable, Graph graph, GraphElement ge, boolean performAltCommand) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.dbe
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.dbe with parameters of type Graph Modifier and Type Method Description static NodeMergeNodes. mergeNode(Graph graph, Collection<Node> toBeMerged, Vector2d center, boolean retainClusterIDs)static voidMergeNodes. mergeNodesIntoSingleNode(Graph graph, Collection<Node> workNodes)static SplitResultSplitNodeForSingleMappingData. splitNodes(Node graphNode, int mMinimumDegree, Graph graph, boolean mProcessSelfLoops, boolean mRepositionOfNodes) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.dbe.database_processing.go
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.dbe.database_processing.go with parameters of type Graph Modifier and Type Method Description static NodeInterpreteGOtermsAlgorithm. processGoHierarchy(PositionGridGenerator pgg, HashMap<String,Node> goTerm2goNode, GoProcessing gp, String goTerm, Graph g)static NodeInterpreteParentGOtermsAlgorithm. processGoHierarchy(PositionGridGenerator pgg, HashMap<String,Node> goTerm2goNode, GoProcessing gp, String goTerm, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.dbe.database_processing.kegg_reaction
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.dbe.database_processing.kegg_reaction that return Graph Modifier and Type Method Description static GraphCreateKeggReactionNetworkAlgorithm. getReactionNetwork() - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.editing_tools
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.editing_tools with parameters of type Graph Modifier and Type Method Description static voidEvaluateKGML. evaluateAndUpdateGraph(Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.editing_tools.script_helper
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.editing_tools.script_helper that return Graph Modifier and Type Method Description GraphNodeHelper. getGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.editing_tools.script_helper with parameters of type Graph Modifier and Type Method Description voidNodeHelper. setGraph(Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.editing_tools.url_attribute_context_commands
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.editing_tools.url_attribute_context_commands with parameters of type Graph Modifier and Type Method Description JMenuItem[]URLattributeContextMenuCommandPlugin. getContextCommand(MouseEvent lastMouseE, Component lastMouseSrc, Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.fast_view
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.fast_view that return Graph Modifier and Type Method Description GraphFastView. getGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.fast_view with parameters of type Graph Modifier and Type Method Description voidFastView. setGraph(Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview that return Graph Modifier and Type Method Description GraphNullView. getGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview with parameters of type Graph Modifier and Type Method Description voidClusterBackgroundDraw. init(Graph graph)voidIPKGraffitiView. setGraph(Graph g)This methods sets the graph and adds the background color attribute, since this View supports background coloringvoidNullView. setGraph(Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent
Fields in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent declared as Graph Modifier and Type Field Description GraphChartOptions. graphMethods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent with parameters of type Graph Modifier and Type Method Description voidChartOptions. setFurtherOptions(Graph graph, String chartTitle)voidChartOptions. setFurtherOptions(Graph graph, BioStatisticalCategoryDataset dataset, String chartTitle)static voidXmlDataChartComponent. setSeriesColorsAndStroke(CategoryItemRenderer renderer, float outlineBorderWidth, Graph graph)voidHeatMapOptions. writeToGraph(Graph g)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent with parameters of type Graph Constructor Description ChartOptions(GraphElement ge, Graph graph, BioStatisticalCategoryDataset dataset, String chartTitle, PlotOrientation orientation, boolean showLegend, String domainAxis, String rangeAxis, boolean showRangeAxis, boolean showCategoryAxis, float outlineBorderWidth, int axisRotation, double lowerBound, double upperBound, boolean showGridRange, boolean showGridCategory, double gridWidth, double axisWidth, Color gridColor, Color axisColor, int axisFontSize, boolean showStdDevAsT, double stdDevTopWidth, boolean showStdDevAsFillRange, float shapeSize, float stdDevLineWidth, boolean showOnlyHalfErrorBar, boolean showShapes, boolean showLines, boolean usePieScaling, boolean connectPriorItems, int plotAxisSteps, boolean useLogYscale, int cpIdxA, int cpIdxC, Color cpColA, Color cpColBackground, Color cpColC, boolean useCustomRangeSteps, double customRangeSteps, boolean removeEmptyConditions)HeatMapOptions(Graph graph)XmlDataChartComponent(String preferredChartType, Graph graph, GraphElement ge) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.kegg_bar
Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.kegg_bar with parameters of type Graph Constructor Description AllSuperGraphsCreator(Graph graph, String targetFolder, OrganismEntry[] orgs, boolean checkOrthologs, boolean checkEnzymes, boolean checkGlycans, boolean checkCompounds, boolean convertKOsToGenes) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control that return Graph Modifier and Type Method Description static GraphTabPatternLayout. getCurrentPatternGraph()For getting the current Pattern Graph.Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control with parameters of type Graph Modifier and Type Method Description static voidTabPatternLayout. showPattern(Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.helper_classes
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.helper_classes with parameters of type Graph Modifier and Type Method Description MapResultExperiment2GraphHelper. mapDataToGraphElements(boolean mapAlsoInCaseOfEmptyDataset, ExperimentInterface md, Collection<GraphElement> targetGraphElements, Graph addNewGraphElementsToThisGraph, boolean doUserMapping, String diagramStyle, int minimumLines, boolean considerEnzymeDb, boolean considerMappingToKEGGmapNodes, boolean selectResult)MapResultExperiment2GraphHelper. mapDataToGraphElements(boolean mapAlsoInCaseOfEmptyDataset, ExperimentInterface mappingData, Collection<GraphElement> targetGraphElements, Graph addNewGraphElementsToThisGraph, boolean doUserMapping, String diagramStyle, int minimumLines, int diagramsPerRow, boolean considerEnzymeDb, boolean considerMappingToKEGGmapNodes, boolean selectResult)Maps the data from the XML document to the list of nodes - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.kegg
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.kegg that return Graph Modifier and Type Method Description static GraphKeggService. getKeggPathwayGravistoGraph(KeggPathwayEntry myEntry, boolean showErrorMessages, Color enzymeColors)static GraphKeggService. getKeggPathwayGravistoGraph(KeggPathwayEntry myEntry, boolean showErrorMessages, Color enzymeColors, boolean includeMapNodes)Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.kegg with parameters of type Graph Modifier and Type Method Description static voidKeggService. colorizeEnzymesGlycansCompounds(Graph graph, String mapName, Color enzymeColor, boolean markNotPresent, boolean orthologs, boolean enzymes, boolean glycans, boolean compounds, boolean convertTypeToGeneWhenProcessingOrthologs)static booleanKeggService. loadKeggPathwayIntoEditor(KeggPathwayEntry myEntry, Graph loadBlockingIntoThisGraph, Color enzymeColor, boolean separateClusters)If loadBlockingIntoThisGraph is != null, this method adds the loaded graph to the given graph instance.static voidKeggService. loadKeggPathwayIntoGraph(InputStream in, Graph g, Color enzymeColor)static voidKeggService. loadPathway(KeggPathwayEntry myEntry, Graph targetGraph, boolean processLabels)static voidKeggService. loadPathway(KeggPathwayEntry myEntry, Graph targetGraph, Node initialMapNode, boolean processLabels)static voidKeggService. loadPathway(KeggPathwayEntry myEntry, Graph targetGraph, Node initialMapNode, boolean askForNewWindow, boolean separateClusters)static voidKeggService. mergeKeggGraphs(Graph mergeIntoThisGraph, Graph newGraph, Vector2d centerOfNewGraph, boolean linkToExistingMaps, boolean clusterSeparation)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.kegg with parameters of type Graph Constructor Description ReactionLabel(Reaction r, HashMap<Entry,Node> entry2graphNode, Pathway p, Collection<Gml2PathwayWarningInformation> warnings, Collection<Gml2PathwayErrorInformation> errors, Graph graph)RelationLabel(Relation r, HashMap<Entry,Node> entry2graphNode, Pathway pathway, Collection<Gml2PathwayWarningInformation> warnings, Collection<Gml2PathwayErrorInformation> errors, Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.metacrop
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.metacrop with parameters of type Graph Modifier and Type Method Description voidTabMetaCrop. addAnnotationsToGraphElements(Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics with parameters of type Graph Modifier and Type Method Description JComponentTabStatistics. createScatterPlotBlock(boolean plotAverage, boolean tickMarksVisible, boolean showRangeAxis, boolean showLegend, double minimumR, float outlineBorderWidth, boolean mergeDataset, double prob, boolean rankOrder, double currGammaValue, Color colR_1, Color colR0, Color colR1, Collection<GraphElement> gEe, Graph graph, boolean returnResult, Component lastScatterPlot, JComponent placeForScatter)static List<Node>TabStatistics. doDavidSchnellTest(List<Node> nodes, Graph g, int probab_123)Returns all nodes which contain samples which are not normaly distributed.JComponentTabStatistics. getScatterPlot(Graph graph)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics with parameters of type Graph Constructor Description MyCorrlationFinder(Collection<Node> nodes, Graph graph, EditorSession session, boolean considerTimeShifts, boolean mergeDataset, boolean colorCodeEdgesWithCorrelationValue, double minimumR, int currGammaValue, Color colR_1, Color colR0, Color colR1, Collection<Edge> correlationEdges, double prob, boolean plotAverage, boolean rankOrder, boolean showStatusResult, boolean dontAddNewEdgesOnlyUpdateExisting) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.plugin_settings
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.plugin_settings with parameters of type Graph Modifier and Type Method Description voidPreferencesDialog. initAlgorithmPreferencesPanel(JDialog thisDialog, Algorithm alg, Graph graph, Selection sele, HandlesAlgorithmData setAlgorithmDataObject, boolean executeMoveToTopAfterwards)voidPreferencesDialog. initializeGUIforGivenContainer(Container cp, JDialog thisDialog, boolean vertical, boolean showCloseButton, boolean showAlgorithms, boolean showSettings, boolean showInteractiveAlgorithms, boolean showScripts, boolean showOnlyLayoutAlgorithms, Graph graph, Selection selection, HandlesAlgorithmData setAlgorithmDataObject, boolean executeMoveToTopAfterwards)voidPreferencesDialog. updateSettingsPanel(JDialog thisDialog, Graph graph, Selection selection, HandlesAlgorithmData setAlgorithmDataObject, boolean executeMoveToTopAfterwards) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.rotate
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.rotate with parameters of type Graph Modifier and Type Method Description voidRotateAlgorithm. attach(Graph g, Selection selection) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax with parameters of type Graph Modifier and Type Method Description static voidHelperClass. returnAttributeByPath(Graph elem, Pattern pattern, ArrayList<Attribute> set)written by Hendrik Mehlhorn it is looking for all attributes that match a specific pattern and putting the result into the set passed into the function - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax.lvl3interactions
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax.lvl3interactions that return Graph Modifier and Type Method Description GraphLVL3ModelConverter. getGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax.lvl3interactions with parameters of type Graph Modifier and Type Method Description voidLVL3ModelConverter. convertLVL3Model(org.biopax.paxtools.model.Model model, Graph g, boolean all)voidLVL3ModelConverter. readGraph(org.biopax.paxtools.model.Model model, Graph g)reads all nodes and edges of the graph first all physical entities will be read so pointing in interactions to them is possible afterwards the interactions will be readConstructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax.lvl3interactions with parameters of type Graph Constructor Description BPBiochemicalReaction(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPCatalysis(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPComplexAssembly(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPControl(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPConversion(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPDegradation(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPGeneticInteraction(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPInteraction(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPModulation(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPMolecularInteraction(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPTemplateReaction(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPTemplateReactionRegulation(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPTransport(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)BPTransportWithBiochemicalReaction(Graph Graph, Hashtable<org.biopax.paxtools.model.level3.Entity,Node> Nodes)PathWayHandler(org.biopax.paxtools.model.Model model, Graph graph)constructor for import - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax.lvl3utility
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.biopax.lvl3utility with parameters of type Graph Modifier and Type Method Description static voidUtilityClassSelectorFromGraph. chooseClassToPutAttributesToModell(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static Map<String[],Attribute>TreeAttributSearcher. getMapPathToAttributable(HashSet<SearchType> validSearchTypes, Graph attr)static voidUBioChemicalReaction. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUCatalysis. readAttributesFromNode(GraphElement edge, Graph g, org.biopax.paxtools.model.Model model)static voidUComplex. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidUComplexAssembly. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUControl. readAttributesFromNode(GraphElement edge, Graph g, org.biopax.paxtools.model.Model model)static voidUConversion. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUDegradation. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUDna. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidUDnaRegion. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidUGene. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidUGeneticInteraction. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUModulation. readAttributesFromNode(GraphElement edge, Graph g, org.biopax.paxtools.model.Model model)static voidUMolecularInteraction. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUPathway. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUPhysicalEntity. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidUProtein. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidURna. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidURnaRegion. readAttributesFromNode(GraphElement elem, Graph g, org.biopax.paxtools.model.Model model)static voidUSmallMolecule. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUTemplateReaction. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUTemplateReactionRegulation. readAttributesFromNode(GraphElement edge, Graph g, org.biopax.paxtools.model.Model model)static voidUTransport. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model)static voidUTransportWithBiochemicalReaction. readAttributesFromNode(GraphElement node, Graph g, org.biopax.paxtools.model.Model model) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.biopax
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.biopax with parameters of type Graph Modifier and Type Method Description booleanBioPAX_OWL_Writer. validFor(Graph g)voidBioPAX_OWL_Writer. write(OutputStream stream, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.metatool
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.metatool with parameters of type Graph Modifier and Type Method Description voidMetaToolReader. read(InputStream in, Graph g)voidMetaToolReader. read(Reader reader, Graph newGraph)booleanMetatoolWriter. validFor(Graph g)voidMetatoolWriter. write(OutputStream stream, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.pajek
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.pajek with parameters of type Graph Modifier and Type Method Description booleanPajekWriter. validFor(Graph g)booleanPovrayWriter. validFor(Graph g)voidPajekWriter. write(OutputStream out, Graph g)voidPovrayWriter. write(OutputStream out, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.sbml
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.sbml with parameters of type Graph Modifier and Type Method Description voidSBML_Compartment_Writer. addCompartment(org.sbml.jsbml.Model model, Graph g, String internHeadline, SBMLCompartmentHelper compartmentHelperObject)Adds a compartment and its attributes to the model.voidSBML_Constraint_Writer. addConstraint(Graph g, org.sbml.jsbml.Model model, String internHeadline, SBMLConstraintHelper constraintHelperObject)Adds a constraint and its variables to the modelvoidSBML_Event_Writer. addEvent(Graph g, org.sbml.jsbml.Model model, String internHeadline)Adds an event to the modelvoidSBML_FunctionDefinition_Writer. addFunctionDefinition(org.sbml.jsbml.Model model, Graph g, String internHeadline, SBMLFunctionDefinitionHelper functionDefinitionHelperObject)Adds a function definition and its variables to the modelvoidSBML_InitialAssignment_Writer. addInitialAssignment(Graph g, org.sbml.jsbml.Model model, String internHeadline, SBMLInitialAssignmentHelper iaHelperObject)Adds an initial assignment and its variables to the modelvoidSBML_Model_Writer. addModel(org.sbml.jsbml.Model model, Graph g)Add attributes to the model.voidSBML_Parameter_Writer. addParameter(Graph g, org.sbml.jsbml.Model model, String interHeadline, SBMLParameterHelper parameterHelperObject)Adds a parameter and its variables to the modelvoidSBML_Reaction_Writer. addReactions(Graph g, org.sbml.jsbml.Model model)This method adds the reactions to a modelvoidSBML_Rule_Writer. addRules(Graph g, org.sbml.jsbml.Model model)Controls the processing of rulesvoidSBML_SBase_Writer. addSBaseAttributes(org.sbml.jsbml.AbstractSBase sbase, Graph g)voidSBML_SBase_Writer. addSBaseAttributes(org.sbml.jsbml.AbstractSBase sbase, Graph g, String niceID)This Method helps processing the attributes with a variable headline inherited by SBasevoidSBML_SBML_Writer. addSBML(OutputStream stream, Graph g)Processes the reading in an modelvoidSBML_Species_Writer. addSpecies(org.sbml.jsbml.Model model, Graph g)Adds a species and its variables to the modelvoidSBML_Species_Writer. addSpeciesGlyph(org.sbml.jsbml.Model model, Graph g)voidSBML_UnitDefinition_Writer. addUnitDefinition(org.sbml.jsbml.Model model, Graph g, String niceID)Adds an unit definition and its variables to the modelObjectSBML_SBase_Writer. getAttribute(Graph g, String headline, String attributeName)Shortens the statement for getting the value of an attributeArrayList<String>SBML_SBase_Writer. headlineHelper(Graph g, String pattern)Method returns all headlines in the graph tab which begin with a certain patternbooleanSBML_XML_Writer. validFor(Graph g)voidSBML_XML_Writer. write(OutputStream stream, Graph g)starts the reading in of the modelvoidSBML_XML_Writer. write(Writer writer, Graph g)Implemented method of interface InputSerializer.java - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.sif
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.sif with parameters of type Graph Modifier and Type Method Description booleanSIFWriter. validFor(Graph g)voidSIFWriter. write(OutputStream out, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.xwg_wilma
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.exporters.xwg_wilma with parameters of type Graph Modifier and Type Method Description booleanXWGSerializer. validFor(Graph g)voidXWGSerializer. write(OutputStream out, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.biopax
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.biopax with parameters of type Graph Modifier and Type Method Description voidBioPAX_OWL_Reader. read(InputStream in, Graph g)main read methodvoidBioPAX_OWL_Reader. read(Reader reader, Graph newGraph)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.biopax with parameters of type Graph Constructor Description PathWayLoaderLvL2(org.biopax.paxtools.model.Model model, Graph g)PathWayLoaderLvL3(org.biopax.paxtools.model.Model model, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.biopax.lvl2interactions
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.biopax.lvl2interactions that return Graph Modifier and Type Method Description GraphLVL2ModelConverter. getGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.biopax.lvl2interactions with parameters of type Graph Modifier and Type Method Description voidLVL2ModelConverter. convertLVL2Model(org.biopax.paxtools.model.Model model, Graph g, boolean all)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.biopax.lvl2interactions with parameters of type Graph Constructor Description BPbiochemicalReaction(Graph Graph, Hashtable<String,Node> Nodes)BPcatalysis(Graph Graph, Hashtable<String,Node> Nodes)BPcomplexAssembly(Graph Graph, Hashtable<String,Node> Nodes)BPcontrol(Graph Graph, Hashtable<String,Node> Nodes)BPconversion(Graph Graph, Hashtable<String,Node> Nodes)BPinteraction(Graph Graph, Hashtable<String,Node> Nodes)BPmodulation(Graph Graph, Hashtable<String,Node> Nodes)BPphysicalInteraction(Graph Graph, Hashtable<String,Node> Nodes)BPtransport(Graph Graph, Hashtable<String,Node> Nodes)BPtransportWithBiochemicalReaction(Graph Graph, Hashtable<String,Node> Nodes)PathWayHandler(org.biopax.paxtools.model.Model model, Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.kegg_xml
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.kegg_xml with parameters of type Graph Modifier and Type Method Description voidKEGG_XML_Reader. read(InputStream in, Graph g)voidKEGG_XML_Reader. read(Reader reader, Graph g)voidKEGG_XML_Reader. read(String filename, Graph g)voidKEGG2_XML_Reader. read(InputStream in, Graph g)voidKEGG2_XML_Reader. read(Reader reader, Graph g)voidKEGG2_XML_Reader. read(String filename, Graph g)booleanKEGG2_XML_Writer. validFor(Graph g)voidKEGG2_XML_Writer. write(OutputStream stream, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.kgml
 - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.pajek
 - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.petri_ina_pnt
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.petri_ina_pnt with parameters of type Graph Modifier and Type Method Description voidPNTReader. read(InputStream in, Graph g)voidPNTReader. read(Reader in, Graph g)booleanPNTSerializer. validFor(Graph g)voidPNTSerializer. write(OutputStream out, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.sbml
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.sbml with parameters of type Graph Modifier and Type Method Description voidSBML_Compartment_Reader. addCompartment(org.sbml.jsbml.ListOf<org.sbml.jsbml.Compartment> compartmentList, Graph g)Method reads in compartments and is called from class SBML_XML_Reader.javavoidSBML_Constraint_Reader. addConstraint(org.sbml.jsbml.ListOf<org.sbml.jsbml.Constraint> listOfConstraints, Graph g)Method reads in constraints and is called from class SBML_XML_Reader.javavoidSBML_Event_Reader. addEvents(List<org.sbml.jsbml.Event> eventList, Graph g)Adds an events to the graph tabvoidSBML_FunctionDefinition_Reader. addFunktionDefinition(org.sbml.jsbml.ListOf<org.sbml.jsbml.FunctionDefinition> functionDefinitionList, Graph g)Method reads in function definitions and is called from class SBML_XML_Reader.javavoidSBML_InitialAssignment_Reader. addInitialAssignments(org.sbml.jsbml.ListOf<org.sbml.jsbml.InitialAssignment> initialAssignmentList, Graph g)Method reads in initial assignments and is called from class SBML_XML_Reader.javavoidSBML_SBase_Reader. addNamespaces(Map<String,String> namespaces, Graph g, String path, String attribute)Adds a map of namespaces (namespace, URL) to the graph tab.static voidSBML_SBase_Reader. addNamespaces(org.sbml.jsbml.xml.XMLNode node, Graph g, String path, String attribute)Adds the namespaces of an XMLNode to the graph tabvoidSBML_SBase_Reader. addNotes(org.sbml.jsbml.xml.XMLNode notesObject, String notesString, Graph g, String path, String notesName)This method adds notes to the current object in the graph tabvoidSBML_Parameter_Reader. addParameter(org.sbml.jsbml.ListOf<org.sbml.jsbml.Parameter> parameterList, Graph g)Method reads in parameter and is called from class SBML_XML_Reader.javavoidSBML_Reaction_Reader. addReactions(Graph g, org.sbml.jsbml.ListOf<org.sbml.jsbml.Reaction> reactionList, String modelID, PositionGridGenerator pgg, SBMLReactionHelper reactionhelper)Method reads in function definitions and is called from class SBML_XML_Reader.java.voidSBML_Rule_Reader. addRule(org.sbml.jsbml.ListOf<org.sbml.jsbml.Rule> listOfRules, Graph g)Method reads in rules and is called from class SBML_XML_Reader.javavoidSBML_SBML_Reader. addSBML(org.sbml.jsbml.SBMLDocument document, Graph g)Method reads in the model tag information and is called from class SBML_XML_Reader.javavoidSBML_Species_Reader. addSpecies(Graph g, org.sbml.jsbml.ListOf<org.sbml.jsbml.Species> speciesList, PositionGridGenerator pgg, SBMLSpeciesHelper specieshelper)reads in species and is called from class SBML_XML_Reader.java.voidSBML_UnitDefinition_Reader. addUnitDefinitions(org.sbml.jsbml.ListOf<org.sbml.jsbml.UnitDefinition> unitDefinitionList, Graph g)Method reads in unit definitions and is called from class SBML_XML_Reader.javavoidSBML_Model_Reader. controlImport(org.sbml.jsbml.SBMLDocument document, Graph g, BackgroundTaskStatusProviderSupportingExternalCallImpl status)Passes the import on to other classesvoidSBML_XML_Reader. read(InputStream in, Graph g)voidSBML_XML_Reader. read(Reader reader, Graph g)voidSBML_XML_Reader. read(org.sbml.jsbml.SBMLDocument document, Graph g, BackgroundTaskStatusProviderSupportingExternalCallImpl status)Method controls the import of the SBML document. - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.text_list
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.text_list with parameters of type Graph Modifier and Type Method Description voidSIFreader. read(InputStream in, Graph g)voidSIFreader. read(Reader reader, Graph g)voidSIFreader. read(String filename, Graph g)voidTextListReader. read(InputStream in, Graph g)voidTextListReader. read(Reader reader, Graph g)voidTextListReader. read(String filename, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.xgmml
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.xgmml that return Graph Modifier and Type Method Description GraphXGMMLHandler. getGraph()GraphXGMMLReader. read(InputStream in_Stream)Reads a graph from the given input stream.Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.importers.xgmml with parameters of type Graph Modifier and Type Method Description voidXGMMLReader. read(InputStream in_Stream, Graph out_Graph)Reads a graph from the given input stream.voidXGMMLReader. read(Reader in, Graph out_Graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.kgml
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.kgml that return Graph Modifier and Type Method Description GraphPathway. getGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.kgml with parameters of type Graph Modifier and Type Method Description NodeEntry. addGraphNode(Graph graph)voidPathway. getGraph(Graph graph)static StringKeggGmlHelper. getKeggId(Graph graph)static StringKeggGmlHelper. getKeggImageUrl(Graph graph)static StringKeggGmlHelper. getKeggLinkUrl(Graph graph)static StringKeggGmlHelper. getKeggMapNumber(Graph graph)static StringKeggGmlHelper. getKeggOrg(Graph graph)static StringKeggGmlHelper. getKeggTitle(Graph graph)static PathwayPathway. getPathwayFromGraph(Graph graph, Collection<Gml2PathwayWarningInformation> warnings, Collection<Gml2PathwayErrorInformation> errors, HashMap<Entry,Node> entry2graphNode)static Collection<Relation>Relation. getRelationElementsFromGraph(Collection<Entry> entries, Graph graph, Collection<Gml2PathwayWarningInformation> warnings, Collection<Gml2PathwayErrorInformation> errors)static voidKeggGmlHelper. setKeggId(Graph graph, String id)static voidKeggGmlHelper. setKeggImageUrl(Graph graph, String imageURL)static voidKeggGmlHelper. setKeggLinkUrl(Graph graph, String linkURL)static voidKeggGmlHelper. setKeggMapNumber(Graph graph, String number)static voidKeggGmlHelper. setKeggOrg(Graph graph, String org)static voidKeggGmlHelper. setKeggTitle(Graph graph, String title) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.sbml
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.sbml with parameters of type Graph Modifier and Type Method Description static voidSBMLHelper. addAlgebraicRule(Graph g, String function)SBMLAlgebraicRuleSBMLRuleHelper. addAlgebraicRule(Graph g, String internHeadline)SBMLAlgebraicRuleSBMLRuleHelper. addAlgebraicRule(Graph g, String internHeadline, String presentedHeadline)List<SBMLAlgebraicRule>SBMLRuleHelper. addAlgebraicRules(Graph g, List<String> internHeadlines)SBMLAssignmentRuleSBMLRuleHelper. addAssignmentRule(Graph g, String internHeadline)SBMLAssignmentRuleSBMLRuleHelper. addAssignmentRule(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addAssignmentRuleFunction(Graph g, String variable, String function)List<SBMLAssignmentRule>SBMLRuleHelper. addAssignmentRules(Graph g, List<String> internHeadlines)static voidSBMLHelper. addAssignmentRuleVariable(Graph g, String variable)SBMLCompartmentSBMLCompartmentHelper. addCompartment(Graph g, String internHeadline)SBMLCompartmentSBMLCompartmentHelper. addCompartment(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addCompartmentConstant(Graph g, String id, boolean constant)static voidSBMLHelper. addCompartmentName(Graph g, String id, String name)List<SBMLCompartment>SBMLCompartmentHelper. addCompartments(Graph g, List<String> internHeadlines)static voidSBMLHelper. addCompartmentSize(Graph g, String id, Double value)static voidSBMLHelper. addCompartmentSpatialDimensions(Graph g, String id, Double value)static voidSBMLHelper. addCompartmentUnits(Graph g, String id, String units)SBMLConstraintSBMLConstraintHelper. addConstraint(Graph g, String internHeadline)SBMLConstraintSBMLConstraintHelper. addConstraint(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addConstraintConstraint(Graph g, String formula)static voidSBMLHelper. addConstraintMessage(Graph g, String formula, String message)List<SBMLConstraint>SBMLConstraintHelper. addConstraints(Graph g, List<String> internHeadlines)static voidSBMLHelper. addDelayToEvent(Graph g, String id, String function)static voidSBMLHelper. addDelayToEvent(Graph g, String id, org.sbml.jsbml.Delay delay)SBMLEventAssignmentHelperSBMLEventHelper. addEventAssignment(Graph g, String internHeadline, int eaCount)SBMLEventAssignmentHelperSBMLEventHelper. addEventAssignment(Graph g, String internHeadline, String presentedHeadline, int eventAssignmentCount)static voidSBMLHelper. addEventAssignmentToEvent(Graph g, String id, String variable, String function)static voidSBMLHelper. addEventAssignmentToEvent(Graph g, String id, org.sbml.jsbml.EventAssignment eventAssignment)static voidSBMLHelper. addEventName(Graph g, String id, String name)static voidSBMLHelper. addEventUseValuesFromTriggerTime(Graph g, String id, boolean useValuesFromTriggerTime)SBMLFunctionDefinitionSBMLFunctionDefinitionHelper. addFunctionDefinition(Graph g, String internHeadline)SBMLFunctionDefinitionSBMLFunctionDefinitionHelper. addFunctionDefinition(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addFunctionDefinitionFunction(Graph g, String id, String function)static voidSBMLHelper. addFunctionDefinitionName(Graph g, String id, String name)List<SBMLFunctionDefinition>SBMLFunctionDefinitionHelper. addFunctionDefinitions(Graph g, List<String> internHeadlines)SBMLInitialAssignmentSBMLInitialAssignmentHelper. addInitialAssignment(Graph g, String internHeadline)SBMLInitialAssignmentSBMLInitialAssignmentHelper. addInitialAssignment(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addInitialAssignmentFunction(Graph g, String symbol, String function)List<SBMLInitialAssignment>SBMLInitialAssignmentHelper. addInitialAssignments(Graph g, List<String> internHeadlines)SBMLLocalParameterKineticLawHelper. addLocalParameter(Graph g, int localParameterCount)SBMLLocalParameterKineticLawHelper. addLocalParemeter(Graph g, String presentedAttributeName, String internAttributeName)SBMLParameterSBMLParameterHelper. addParameter(Graph g, String internHeadline)SBMLParameterSBMLParameterHelper. addParameter(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addParameterConstant(Graph g, String id, boolean constant)static voidSBMLHelper. addParameterName(Graph g, String id, String name)List<SBMLParameter>SBMLParameterHelper. addParameters(Graph g, List<String> internHeadlines)static voidSBMLHelper. addParameterUnits(Graph g, String id, String units)static voidSBMLHelper. addParameterValue(Graph g, String id, Double value)static voidSBMLHelper. addPriorityToEvent(Graph g, String id, String function)static voidSBMLHelper. addPriorityToEvent(Graph g, String id, org.sbml.jsbml.Priority priority)SBMLRateRuleSBMLRuleHelper. addRateRule(Graph g, String internHeadline)SBMLRateRuleSBMLRuleHelper. addRateRule(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addRateRuleFunction(Graph g, String variable, String function)List<SBMLRateRule>SBMLRuleHelper. addRateRules(Graph g, List<String> internHeadlines)static voidSBMLHelper. addRateRuleVariable(Graph g, String variable)static voidSBMLHelper. addTriggerFunction(Graph g, String eventID, String function)static voidSBMLHelper. addTriggerInitialValue(Graph g, String eventID, boolean initialValue)static voidSBMLHelper. addTriggerPersistent(Graph g, String eventID, boolean persistent)static voidSBMLHelper. addTriggerToEvent(Graph g, String id, boolean initialValue, boolean persistent, String formula)static voidSBMLHelper. addTriggerToEvent(Graph g, String id, org.sbml.jsbml.Trigger trigger)SBMLUnitDefinitionSBMLUnitDefinitionHelper. addUnitDefinition(Graph g, String internHeadline)SBMLUnitDefinitionSBMLUnitDefinitionHelper. addUnitDefinition(Graph g, String internHeadline, String presentedHeadline)static voidSBMLHelper. addUnitDefinitionID(Graph g, String oldID, String newID)static voidSBMLHelper. addUnitDefinitionName(Graph g, String id, String name)List<SBMLUnitDefinition>SBMLUnitDefinitionHelper. addUnitDefinitions(Graph g, List<String> internHeadlines)static voidSBMLHelper. addUnitToUnitDefinition(Graph g, String id, org.sbml.jsbml.Unit unit)static voidSBMLHelper. addUnitToUnitDefinition(Graph g, String id, org.sbml.jsbml.Unit.Kind kind, double exponent, double multiplier, int scale)static intSBMLHelper. countFunctionDefinitions(Graph g)Returns the number of function definitions in the graphstatic org.sbml.jsbml.AlgebraicRuleSBMLHelper. createAlgebraicRule(Graph g, String formula)static voidSBMLHelper. createAlgebraicRule(Graph g, org.sbml.jsbml.AlgebraicRule ar)static org.sbml.jsbml.AssignmentRuleSBMLHelper. createAssignmentRule(Graph g, String variable)static org.sbml.jsbml.AssignmentRuleSBMLHelper. createAssignmentRule(Graph g, String variable, String formula)static voidSBMLHelper. createAssignmentRule(Graph g, org.sbml.jsbml.AssignmentRule ar)static org.sbml.jsbml.CompartmentSBMLHelper. createCompartment(Graph g, String id)Creates an compartment in the graph tab with an specific idstatic voidSBMLHelper. createCompartment(Graph g, org.sbml.jsbml.Compartment compartment)static org.sbml.jsbml.ConstraintSBMLHelper. createConstraint(Graph g, String math)static voidSBMLHelper. createConstraint(Graph g, org.sbml.jsbml.Constraint constraint)static org.sbml.jsbml.EventSBMLHelper. createEvent(Graph g, String id)static voidSBMLHelper. createEvent(Graph g, org.sbml.jsbml.Event event)static org.sbml.jsbml.FunctionDefinitionSBMLHelper. createFunctionDefinition(Graph g, String id)static voidSBMLHelper. createFunctionDefinition(Graph g, org.sbml.jsbml.FunctionDefinition fd)static org.sbml.jsbml.InitialAssignmentSBMLHelper. createInitialAssignment(Graph g, String symbol)static voidSBMLHelper. createInitialAssignment(Graph g, org.sbml.jsbml.InitialAssignment ia)static org.sbml.jsbml.ParameterSBMLHelper. createParameter(Graph g, String id)static voidSBMLHelper. createParameter(Graph g, org.sbml.jsbml.Parameter parameter)static org.sbml.jsbml.RateRuleSBMLHelper. createRateRule(Graph g, String variable)static org.sbml.jsbml.RateRuleSBMLHelper. createRateRule(Graph g, String variable, String formula)static voidSBMLHelper. createRateRule(Graph g, org.sbml.jsbml.RateRule rr)static NodeSBMLHelper. createReaction(Graph g, String id, String name)static NodeSBMLHelper. createReaction(Graph g, org.sbml.jsbml.Reaction reaction)static NodeSBMLHelper. createSpecies(Graph g, String id, String name)Creates a new species node and sets its idstatic NodeSBMLHelper. createSpecies(Graph g, org.sbml.jsbml.Species species)static org.sbml.jsbml.UnitDefinitionSBMLHelper. createUnitDefinition(Graph g, String id)static voidSBMLHelper. createUnitDefinition(Graph g, org.sbml.jsbml.UnitDefinition ud)static voidSBMLHelper. deleteAlgebraicRule(Graph g, String formula)static voidSBMLHelper. deleteAlgebraicRuleFunction(Graph g, String function)static voidSBMLHelper. deleteAssignmentRule(Graph g, String variable)static voidSBMLHelper. deleteAssignmentRuleFunction(Graph g, String variable)static voidSBMLHelper. deleteAssignmentRuleVariable(Graph g, String variable)static voidSBMLHelper. deleteCompartment(Graph g, String id)static voidSBMLHelper. deleteCompartmentConstant(Graph g, String id)static voidSBMLHelper. deleteCompartmentID(Graph g, String id)static voidSBMLHelper. deleteCompartmentName(Graph g, String id)static voidSBMLHelper. deleteCompartmentSize(Graph g, String id)static voidSBMLHelper. deleteCompartmentSpatialDimensions(Graph g, String id)static voidSBMLHelper. deleteCompartmentUnits(Graph g, String id)static voidSBMLHelper. deleteConstraint(Graph g, String formula)static voidSBMLHelper. deleteConstraintMessage(Graph g, String constraint)static voidSBMLHelper. deleteDelayFunction(Graph g, String id)static voidSBMLHelper. deleteEvent(Graph g, String id)static voidSBMLHelper. deleteEventAssignment(Graph g, String id, String variable)static voidSBMLHelper. deleteEventID(Graph g, String id)static voidSBMLHelper. deleteEventName(Graph g, String id)static voidSBMLHelper. deleteEventUseValuesFromTriggerTime(Graph g, String id)static voidSBMLHelper. deleteFunctionDefinition(Graph g, String id)static voidSBMLHelper. deleteFunctionDefinitionFunction(Graph g, String id)static voidSBMLHelper. deleteFunctionDefinitionID(Graph g, String id)static voidSBMLHelper. deleteFunctionDefinitionName(Graph g, String id)static voidSBMLHelper. deleteInitialAssignment(Graph g, String symbol)static voidSBMLHelper. deleteInitialAssignmentFunction(Graph g, String symbol)static voidSBMLHelper. deleteInitialAssignmentSymbol(Graph g, String symbol)static voidSBMLHelper. deleteParameter(Graph g, String id)static voidSBMLHelper. deleteParameterConstant(Graph g, String id)static voidSBMLHelper. deleteParameterID(Graph g, String id)static voidSBMLHelper. deleteParameterName(Graph g, String id)static voidSBMLHelper. deleteParameterUnits(Graph g, String id)static voidSBMLHelper. deleteParameterValue(Graph g, String id)static voidSBMLHelper. deletePriority(Graph g, String id)static voidSBMLHelper. deletePriorityFunction(Graph g, String id)static voidSBMLHelper. deleteRateRule(Graph g, String variable)static voidSBMLHelper. deleteRateRuleFunction(Graph g, String variable)static voidSBMLHelper. deleteRateRuleVariable(Graph g, String variable)static voidSBMLHelper. deleteTriggeInitialValue(Graph g, String id)static voidSBMLHelper. deleteTrigger(Graph g, String id)static voidSBMLHelper. deleteTriggerFunction(Graph g, String id)static voidSBMLHelper. deleteTriggerPersistent(Graph g, String id)static voidSBMLHelper. deleteUnitDefinitionID(Graph g, String id)static voidSBMLHelper. deleteUnitDefinitionName(Graph g, String id)List<String>SBMLRuleHelper. getAlgebraicRuleHeadlines(Graph g)static List<org.sbml.jsbml.AssignmentRule>SBMLHelper. getAllAssignmentRules(Graph g)Returns a list of assignment rules with distinct headlinesstatic List<org.sbml.jsbml.Compartment>SBMLHelper. getAllCompartments(Graph g)Returns a list of compartments with distinct headlinesstatic List<org.sbml.jsbml.Constraint>SBMLHelper. getAllConstraints(Graph g)Returns a list of constraint with distinct headlinesstatic List<org.sbml.jsbml.Event>SBMLHelper. getAllEvent(Graph g)Returns a list of event with distinct headlinesstatic List<org.sbml.jsbml.FunctionDefinition>SBMLHelper. getAllFunctionDefinitions(Graph g)Returns a list of filled JSBML FunctionDefinition objectsstatic List<org.sbml.jsbml.InitialAssignment>SBMLHelper. getAllInitialAssignment(Graph g)Returns a list of initial assignment with distinct headlinesstatic List<org.sbml.jsbml.Parameter>SBMLHelper. getAllParameters(Graph g)Returns a list of parameter with distinct headlinesstatic List<org.sbml.jsbml.UnitDefinition>SBMLHelper. getAllUnitDefinitions(Graph g)Returns a filled list of UnitDefinition objectsstatic ArrayList<String>SBMLHelper. getAssignmentRuleHeadlines(Graph g)Returns a list of all assignment rule headlines in the graphList<String>SBMLRuleHelper. getAssignmentRuleHeadlines(Graph g)List<String>SBMLCompartmentHelper. getCompartmentHeadlines(Graph g)List<String>SBMLConstraintHelper. getConstraintHeadlines(Graph g)List<String>SBMLFunctionDefinitionHelper. getFunctionDefinitionHeadlines(Graph g)List<String>SBMLInitialAssignmentHelper. getInitialAssignmentHeadlines(Graph g)List<String>SBMLParameterHelper. getParameterHeadlines(Graph g)List<String>SBMLRuleHelper. getRateRuleHeadlines(Graph g)static NodeSBMLHelper. getReactionNode(Graph g, String id)Returns the reaction node with a distinct idstatic List<Node>SBMLHelper. getReactionNodes(Graph g)Returns all reaction nodes of the graphstatic NodeSBMLHelper. getSpeciesNode(Graph g, String id)Returns the species node with a distinct idstatic List<Node>SBMLHelper. getSpeciesNodes(Graph g)Returns all species nodes of the graphList<String>SBMLUnitDefinitionHelper. getUnitDefinitionHeadlines(Graph g)static booleanSBMLHelper. isSetAssignmentRuleFunction(Graph g, String variable)static booleanSBMLHelper. isSetAssignmentRuleVariable(Graph g, String variable)static booleanSBMLHelper. isSetCompartmentConstants(Graph g, String id)static booleanSBMLHelper. isSetCompartmentID(Graph g, String id)static booleanSBMLHelper. isSetCompartmentName(Graph g, String id)static booleanSBMLHelper. isSetCompartmentSize(Graph g, String id)static booleanSBMLHelper. isSetCompartmentSpatialDimensions(Graph g, String id)static booleanSBMLHelper. isSetCompartmentUnits(Graph g, String id)static booleanSBMLHelper. isSetConstraintMessage(Graph g, String constraint)static booleanSBMLHelper. isSetDelay(Graph g, String id)static booleanSBMLHelper. isSetDelayFunction(Graph g, String id)static booleanSBMLHelper. isSetEventName(Graph g, String id)static booleanSBMLHelper. isSetEventUseValuesFromTriggerTime(Graph g, String id)static booleanSBMLHelper. isSetFunctionDefinitionFunction(Graph g, String id)static booleanSBMLHelper. isSetFunctionDefinitionID(Graph g, String id)static booleanSBMLHelper. isSetFunctionDefinitionName(Graph g, String id)static booleanSBMLHelper. isSetInitialAssignmentFunction(Graph g, String symbol)static booleanSBMLHelper. isSetInitialAssignmentSymbol(Graph g, String symbol)static booleanSBMLHelper. isSetLayoutID(Graph g, Node node)static booleanSBMLHelper. isSetParameterConstant(Graph g, String id)static booleanSBMLHelper. isSetParameterName(Graph g, String id)static booleanSBMLHelper. isSetParameterUnits(Graph g, String id)static booleanSBMLHelper. isSetParameterValue(Graph g, String id)static booleanSBMLHelper. isSetPriority(Graph g, String id)static booleanSBMLHelper. isSetRateRuleFunction(Graph g, String variable)static booleanSBMLHelper. isSetRateRuleVariable(Graph g, String variable)static booleanSBMLHelper. isSetTriggerFunction(Graph g, String id)static booleanSBMLHelper. isSetTriggerInitialValue(Graph g, String id)static booleanSBMLHelper. isSetTriggerPersistent(Graph g, String id)static booleanSBMLHelper. isSetUnitDefinitionID(Graph g, String id)static booleanSBMLHelper. isSetUnitDefinitionName(Graph g, String id)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.ios.sbml with parameters of type Graph Constructor Description KineticLawHelper(Graph g, Map<String,List<Node>> reactionClones)Constructor.SBMLAlgebraicRule(Graph g, String internHeadline)SBMLAlgebraicRule(Graph g, String internHeadline, String presentedHeadline)SBMLAssignmentRule(Graph g, String internHeadline)SBMLAssignmentRule(Graph g, String internHeadline, String presentedHeadline)SBMLCompartment(Graph g, String internHeadline)Constructor.SBMLCompartment(Graph g, String internHeadline, String presentedHeadline)Constructor.SBMLConstraint(Graph g, String internHeadline)SBMLConstraint(Graph g, String internHeadline, String presentedHeadline)SBMLEventAssignmentHelper(Graph g, String internHeadline, int eventAssignmentCount)SBMLEventAssignmentHelper(Graph g, String internHeadline, String presentedHeadline, int eventAssignmentCount)SBMLEventHelper(Graph g, String internHeadline)SBMLEventHelper(Graph g, String internHeadline, String presentedHeadline)SBMLFunctionDefinition(Graph g, String internHeadline)Constructor.SBMLFunctionDefinition(Graph g, String internHeadline, String presentedHeadline)Constructor.SBMLInitialAssignment(Graph g, String internHeadline)SBMLInitialAssignment(Graph g, String internHeadline, String presentedHeadline)SBMLLocalParameter(Graph g, int localParameterCount)SBMLLocalParameter(Graph g, String presentedAttributeName, String internAttributeName)Constructor.SBMLParameter(Graph g, String internHeadline)SBMLParameter(Graph g, String internHeadline, String presentedHeadline)SBMLRateRule(Graph g, String internHeadline)SBMLRateRule(Graph g, String internHeadline, String presentedHeadline)SBMLReactionHelper(Graph g)Constructor.SBMLSpeciesHelper(Graph g)Constructor.SBMLUnit(Graph g, String internHeadline, int subUnitCount)SBMLUnit(Graph g, String internHeadline, String presentedHeadline, int subUnitCount)SBMLUnitDefinition(Graph g, String internHeadline)SBMLUnitDefinition(Graph g, String internHeadline, String presentedHeadline) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.apply_from_graph
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.apply_from_graph with parameters of type Graph Modifier and Type Method Description static ArrayList<Node>ApplyGraphLayout. applyLayoutFromGraphToGraph(Selection s, Graph g, Graph layoutedGraph, String commandName, boolean considerEdgeLayout)voidApplyGraphLayout. attach(Graph g, Selection selection) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.circle
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.circle with parameters of type Graph Modifier and Type Method Description voidCircleLayouterWithMinimumCrossingsAlgorithm. attach(Graph graph, Selection selection) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.connected_components
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.connected_components with parameters of type Graph Modifier and Type Method Description static voidConnectedComponentLayout. layoutConnectedComponents(Graph graph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.copy_pattern_layout
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.copy_pattern_layout that return Graph Modifier and Type Method Description GraphCopyPatternLayoutAlgorithm. getGraph() - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.fish_eye
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.fish_eye with parameters of type Graph Modifier and Type Method Description voidFishEyeLayout. attach(Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.graph_to_origin_mover
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.graph_to_origin_mover with parameters of type Graph Modifier and Type Method Description static voidCenterLayouterAlgorithm. moveGraph(Graph graph, String nameOfOperation, boolean moveToTop, double offX, double offY) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder with parameters of type Graph Modifier and Type Method Description voidPatternSpringembedder. attach(Graph g, Selection s)voidPatternSpringembedder3d. attach(Graph g, Selection s)static voidMyTools. initNodeCache(ArrayList<NodeCacheEntry> nodeArray, HashMap<Node,NodeCacheEntry> nodeSearch, Graph graph, Selection selection, ArrayList<Graph> patternGraphs)As the attribute access is very slow, this method initializes the NodeCacheEntry structures.static voidMyTools. initNodeCache3d(ArrayList<NodeCacheEntry3d> nodeArray, HashMap<Node,NodeCacheEntry3d> nodeSearch, Graph graph, Selection selection)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder with parameters of type Graph Constructor Description MyNonInteractiveSpringEmb(Graph gi, Selection s, ThreadSafeOptions tso) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder_no_cache
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder_no_cache with parameters of type Graph Modifier and Type Method Description voidPatternSpringembedder. attach(Graph g)voidPatternSpringembedder. attach(Graph g, Selection selection)static voidMyTools. initNodeCache(ArrayList<NodeCacheEntry> nodeArray, HashMap<Node,NodeCacheEntry> nodeSearch, Graph graph)As the attribute access is very slow, this method initializes the NodeCacheEntry structures. - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder.clusterCommands
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder.clusterCommands with parameters of type Graph Modifier and Type Method Description voidRemoveBendsAlgorithm. attach(Graph graph, Selection selection, boolean attachUndo)static voidPajekClusterColor. executeClusterColoringOnGraph(Graph g)Colour clusters based on the stored ClusterColorAttribute for the graph.static voidPajekClusterColor. executeClusterColoringOnGraph(Graph g, ClusterColorAttribute cca)static voidPajekClusterColor. executeClusterColoringOnGraph(Graph g, Collection<String> clusters, ClusterColorAttribute cca)static voidPajekClusterColor. removeClusterColoringOnGraph(Graph g)Re-colours graph elements to their default fill and outline colours.Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder.clusterCommands with parameters of type Graph Constructor Description AreaManager(Graph g)MyClusterGraphBasedReLayoutService(boolean waitForLayout, Graph g) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.graph_cleanup
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.graph_cleanup with parameters of type Graph Modifier and Type Method Description voidNumberNodesAndEdgesAlgorithm. attach(Graph g, Selection s) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.invert_selection
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.invert_selection with parameters of type Graph Modifier and Type Method Description voidExportDataTableAlgorithm. attach(Graph graph, Selection selection)static voidSearchAndSelecAlgorithm. enumerateAllAttributes(ArrayList<AttributePathNameSearchType> possibleAttributes, Graph graph, HashSet<SearchType> validSearchTypes)static intRemoveSelectedNodesPreserveEdgesAlgorithm. removeNodesPreserveEdges(ArrayList<Node> workNodes, Graph graph, boolean ignoreDirection, boolean layoutParallelEdges, BackgroundTaskStatusProviderSupportingExternalCall optStatus) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.pathway_references
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.pathway_references that return Graph Modifier and Type Method Description GraphSessionLinkInfo. getGraph()Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.pathway_references with parameters of type Graph Modifier and Type Method Description static NodePathwayReferenceAutoCreationAlgorithm. addMapLinkNode(String fileName, Graph graph, Node initNode, ActionEvent ae, boolean searchExistingMapLinkNode, boolean searchAndLinkSimilarNodes, boolean searchAndLinkSameTarget)Method parameters in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.pathway_references with type arguments of type Graph Modifier and Type Method Description voidPathwayReferenceAutoCreationAlgorithm. connectGraphToGraphs(Collection<Graph> graphs, String workSessionFilePath, boolean linkviz)Constructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.pathway_references with parameters of type Graph Constructor Description SessionLinkInfo(Graph otherGraph) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.print.printer
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.print.printer with parameters of type Graph Modifier and Type Method Description voidPrintAlgorithm. attach(Graph g, Selection s)Unused for this plugin. - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.svg_exporter
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.misc.svg_exporter with parameters of type Graph Modifier and Type Method Description static voidPngJpegAlgorithm. createPNGimageFromGraph(Graph g)static voidPngJpegAlgorithm. createPNGimageFromGraph(Graph g, String fullPathAndFileName, PngJpegAlgorithmParams settings)voidPngJpegAlgorithm. execute(Graph targetGraph, String filenameMain, String imageType, int imageTypeVal, ObjectRef resultView, ImageFileResultProcessor imageFileResultProcessor)static BufferedImagePngJpegAlgorithm. getActiveGraphViewImage(Graph targetGraph, int imageType, String fileExtension, PngJpegAlgorithmParams params, BackgroundTaskStatusProviderSupportingExternalCall optStatus)static BufferedImagePngJpegAlgorithm. getActiveGraphViewImage(Graph targetGraph, int imageType, String fileExtension, PngJpegAlgorithmParams params, BackgroundTaskStatusProviderSupportingExternalCall optStatus, boolean allowBackgroundThread)Collection<BufferedImageResult>PngJpegAlgorithm. getActiveGraphViewImage(Graph targetGraph, int imageType, String fileExtension, BackgroundTaskStatusProviderSupportingExternalCall optStatus)Collection<BufferedImageResult>PngJpegAlgorithm. getActiveGraphViewImage(Graph targetGraph, int imageType, String fileExtension, BackgroundTaskStatusProviderSupportingExternalCall optStatus, boolean allowBackgroundThread)static StringPngJpegAlgorithm. getCachedFileName(String extension, Graph graph, Algorithm algorithm, ObjectRef lastEvent, ObjectRef lastFolder) - 
Uses of Graph in de.ipk_gatersleben.ag_nw.graffiti.services
Methods in de.ipk_gatersleben.ag_nw.graffiti.services with parameters of type Graph Modifier and Type Method Description static voidAlgorithmServices. selectAndRunLayoutAlgorithm(Graph clusterReferenceGraph, Selection selection, String commandTitle, boolean executeMoveToTopAfterwards)This method calls a user defined layout algorithm for the given graph.Constructors in de.ipk_gatersleben.ag_nw.graffiti.services with parameters of type Graph Constructor Description RunAlgorithmDialog(String title, Graph graph, Selection selection, boolean returnAlgorithmInsteadOfRun, boolean executeMoveToTopAfterwards) - 
Uses of Graph in org
Methods in org with parameters of type Graph Modifier and Type Method Description static doubleAttributeHelper. getHeatMapGamma(Graph graph)static doubleAttributeHelper. getHeatMapLowerBound(Graph graph)static doubleAttributeHelper. getHeatMapMiddleBound(Graph graph)static doubleAttributeHelper. getHeatMapUpperBound(Graph graph)static voidAttributeHelper. moveGraph(Graph graph, int x, int y) - 
Uses of Graph in org.graffiti.editor
Methods in org.graffiti.editor that return Graph Modifier and Type Method Description GraphMainFrame. getGraph(File file)GraphMainFrame. getGraph(String fileName, URL url)GraphMainFrame. getGraph(IOurl url)GraphMainFrame. getGraph(IOurl url, String fileName)Will not be able to read cluster information (in separate file) for ".net" files and .gz-filesGraphMainFrame. loadGraph(String fileName, URL url)Loads a graph from a file;Methods in org.graffiti.editor that return types with arguments of type Graph Modifier and Type Method Description Vector<Graph>GravistoService. getMainGraphs()Returns aVectorwhich contains a list of graphs from the main view.ArrayList<Graph>GravistoService. getPatternGraphs()Returns aVectorwhich contains a list of pattern graphs.Methods in org.graffiti.editor with parameters of type Graph Modifier and Type Method Description EditorSessionMainFrame. createNewSession(Graph g)SessionMainFrame. getEditorSessionForGraph(Graph graph)EditorSessionGravistoService. getSessionFromGraph(Graph graph)EditorSessionMainFrame. lookUpSession(Graph g, boolean createIfNotFound)voidGravistoService. runAlgorithm(Algorithm algorithm, Graph graph, Selection selection, boolean enableMultipleSessionProcessing, ActionEvent event)voidGravistoService. runAlgorithm(Algorithm algorithm, Graph graph, Selection selection, ActionEvent event)voidGravistoService. runPlugin(String pluginNameOrClassName, Graph g, ActionEvent event)Starts a plugin and returns, as soon as the plugin execution has finished.voidMainFrame. saveGraphAs(Graph graph, String fileName, String fileTypeDescription)voidMainFrame. showGraph(Graph g, ActionEvent e)voidMainFrame. showGraph(Graph g, ActionEvent e, LoadSetting interaction) - 
Uses of Graph in org.graffiti.editor.actions
Methods in org.graffiti.editor.actions that return Graph Modifier and Type Method Description static GraphCopyAction. doCopyGraphMethodImproved(Graph sourceGraph, Selection selection, boolean returnGraphInsteadPastingInClipboard)static GraphCopyAction. doCopyGraphMethodImproved(Graph sourceGraph, Selection selection, boolean returnGraphInsteadPastingInClipboard, OutputSerializer os)Methods in org.graffiti.editor.actions with parameters of type Graph Modifier and Type Method Description static voidCopyAction. doCopyGraph(Graph sourceGraph, Selection selection)static voidCopyAction. doCopyGraphMethodImproved(Graph sourceGraph, Selection selection)static GraphCopyAction. doCopyGraphMethodImproved(Graph sourceGraph, Selection selection, boolean returnGraphInsteadPastingInClipboard)static GraphCopyAction. doCopyGraphMethodImproved(Graph sourceGraph, Selection selection, boolean returnGraphInsteadPastingInClipboard, OutputSerializer os)voidFileHandlingListeners. fileSaved(File file, String ext, Graph graph)static booleanFileSaveAsAction. safeFile(File file, String ext, String fileTypeDescription, Graph graph)voidFileHandlingManager. throwFileSaved(File file, String ext, Graph graph) - 
Uses of Graph in org.graffiti.event
Methods in org.graffiti.event that return Graph Modifier and Type Method Description GraphGraphEvent. getGraph()Returns the graph that has been changed.Constructors in org.graffiti.event with parameters of type Graph Constructor Description GraphEvent(Graph graph)Constructs a graph event object with the specified source component. - 
Uses of Graph in org.graffiti.graph
Classes in org.graffiti.graph that implement Graph Modifier and Type Class Description classAbstractGraphProvides further functionality for graphs.classAdjListGraphImplements theGraph-interface using an adjacency list representation of the graph.classOptAdjListGraphImplements theGraph-interface using an adjacency list representation of the graph.Methods in org.graffiti.graph that return Graph Modifier and Type Method Description GraphAbstractGraphElement. getGraph()Returns the Graph theAbstractGraphElementbelongs to.GraphGraphElement. getGraph()Returns the Graph the GraphElement belongs to.Methods in org.graffiti.graph with parameters of type Graph Modifier and Type Method Description Collection<GraphElement>AbstractGraph. addGraph(Graph g)Adds a Graph g to the current graph.Collection<GraphElement>Graph. addGraph(Graph g)Adds aGraphg to the currentGraph.voidAdjListEdge. setGraph(Graph graph)voidAdjListNode. setGraph(Graph graph)voidEdge. setGraph(Graph graph)voidNode. setGraph(Graph graph)Constructors in org.graffiti.graph with parameters of type Graph Constructor Description AbstractEdge(Graph graph)Constructs a newAbstractEdge.AbstractEdge(Graph graph, CollectionAttribute coll)Constructs a newAbstractEdge.AbstractGraphElement(Graph graph)Constructs a newAbstrctGraphElement.AbstractGraphElement(Graph graph, CollectionAttribute coll)Constructs a newAbstrctGraphElement.AbstractNode(Graph graph)Constructs a newAbstractNode.AbstractNode(Graph graph, CollectionAttribute coll)Constructs a newAbstractNode.AdjListGraph(Graph g, ListenerManager listenerManager)Constructs a new instance of anAdjListGraphfrom an instance of anyGraphimplementation.AdjListGraph(Graph g, ListenerManager listenerManager, CollectionAttribute coll)Constructs a new instance of anAdjListGraphfrom an instance of anyGraphimplementation.OptAdjListGraph(Graph g, ListenerManager listenerManager)Constructs a new instance of anOptAdjListGraphfrom an instance of anyGraphimplementation.OptAdjListGraph(Graph g, ListenerManager listenerManager, CollectionAttribute coll)Constructs a new instance of anOptAdjListGraphfrom an instance of anyGraphimplementation. - 
Uses of Graph in org.graffiti.managers
Methods in org.graffiti.managers with parameters of type Graph Modifier and Type Method Description JFileChooserDefaultIOManager. createSaveFileChooser(Graph g)JFileChooserIOManager. createSaveFileChooser(Graph g)Creates and returns a file open chooser dialog with the registered file extensions from the output serializers and checking, if output serializer is capable of writing the graph. - 
Uses of Graph in org.graffiti.plugin.actions
Methods in org.graffiti.plugin.actions with parameters of type Graph Modifier and Type Method Description ActionListenerURLattributeAction. getActionListener(Attribute displayable, Graph graph, GraphElement ge, boolean performAltCommand) - 
Uses of Graph in org.graffiti.plugin.algorithm
Methods in org.graffiti.plugin.algorithm that return Graph Modifier and Type Method Description GraphThreadSafeOptions. getGraphInstance()DOCUMENT ME!Methods in org.graffiti.plugin.algorithm with parameters of type Graph Modifier and Type Method Description voidAnimatedAlgorithm. animate(Graph g)Starts the animation of the algorithm.voidAbstractAlgorithm. attach(Graph graph, Selection selection)voidAlgorithm. attach(Graph g, Selection selection)Attaches the given graph to this algorithm.voidAnimatedAlgorithm. execute(Graph g)Executes the whole algorithm as one big step.JMenuItem[]ProvidesDirectMouseClickContextMenu. getContextCommand(MouseEvent lastMouseE, Component lastMouseSrc, Graph graph)voidThreadSafeOptions. setGraphInstance(Graph newG)DOCUMENT ME! - 
Uses of Graph in org.graffiti.plugin.io
Methods in org.graffiti.plugin.io that return Graph Modifier and Type Method Description GraphAbstractInputSerializer. read(InputStream in)Reads in a graph from the given input stream.GraphAbstractIOSerializer. read(InputStream in)Reads in a graph from the given input stream.GraphInputSerializer. read(InputStream in)Reads in a graph from the given input stream.Methods in org.graffiti.plugin.io with parameters of type Graph Modifier and Type Method Description voidGraphPostProcessor. processNewGraph(Graph g)Call back for processing newly created graphs and newly loaded graphs.abstract voidAbstractInputSerializer. read(InputStream in, Graph g)Reads in a graph from the given input stream.voidAbstractInputSerializer. read(String filename, Graph g)Reads in a graph from the given filename.voidAbstractInputSerializer. read(URL url, Graph g)Reads in the graph from the given url.abstract voidAbstractIOSerializer. read(InputStream in, Graph g)Reads in a graph from the given input stream.voidAbstractIOSerializer. read(String filename, Graph g)Reads in a graph from the given filename.voidAbstractIOSerializer. read(URL url, Graph g)Reads in the graph from the given url.voidInputSerializer. read(InputStream in, Graph g)Reads in a graph from the given input stream.voidInputSerializer. read(Reader reader, Graph newGraph)voidInputSerializer. read(String filename, Graph g)Reads in a graph from the given filename.voidInputSerializer. read(URL url, Graph g)Reads in the graph from the given url.booleanAbstractOutputSerializer. validFor(Graph g)As standard, an output serializer will be valid writer for any type of graphbooleanOutputSerializer. validFor(Graph g)voidAbstractIOSerializer. write(String filename, Graph g)Writes the contents of the given graph to a file.voidAbstractOutputSerializer. write(Graph g, String filename)Writes the contents of the given graph to a file.voidOutputSerializer. write(OutputStream stream, Graph g)Writes the contents of the given graph to a stream.voidSupportsWriterOutput. write(Writer output, Graph resultGraph) - 
Uses of Graph in org.graffiti.plugin.mode
Methods in org.graffiti.plugin.mode with parameters of type Graph Modifier and Type Method Description voidGraphConstraint. validate(Graph g)Checks whether the specified graph satisfies the defined constraint. - 
Uses of Graph in org.graffiti.plugin.parameter
Constructors in org.graffiti.plugin.parameter with parameters of type Graph Constructor Description NodeParameter(Graph graph, Node initalNode, String name, String description)Constructs a new node parameter. - 
Uses of Graph in org.graffiti.plugin.tool
 - 
Uses of Graph in org.graffiti.plugin.view
Methods in org.graffiti.plugin.view that return Graph Modifier and Type Method Description GraphAbstractView. getGraph()GraphView. getGraph()Methods in org.graffiti.plugin.view with parameters of type Graph Modifier and Type Method Description abstract voidAbstractView. setGraph(Graph g)Sets the graph this view displays.voidView. setGraph(Graph graph)Sets the graph of the view to the specified value.Constructors in org.graffiti.plugin.view with parameters of type Graph Constructor Description AbstractView(Graph currentGraph)Constructs a newGraffitiViewfor the specifiedGraph. - 
Uses of Graph in org.graffiti.plugins.inspectors.defaults
Methods in org.graffiti.plugins.inspectors.defaults with parameters of type Graph Modifier and Type Method Description static voidDefaultEditPanel. issueCompleteRedrawForView(View activeView, Graph g) - 
Uses of Graph in org.graffiti.plugins.ios.exporters.gml
Methods in org.graffiti.plugins.ios.exporters.gml with parameters of type Graph Modifier and Type Method Description booleanGMLWriter. validFor(Graph g)voidGMLgzWriter. write(OutputStream stream, Graph g)voidGMLWriter. write(OutputStream o, Graph g)voidGMLWriter. write(Writer o, Graph g) - 
Uses of Graph in org.graffiti.plugins.ios.exporters.gmlxml
Methods in org.graffiti.plugins.ios.exporters.gmlxml with parameters of type Graph Modifier and Type Method Description booleanGMLXMLWriter. validFor(Graph g)voidGMLXMLWriter. write(OutputStream o, Graph g) - 
Uses of Graph in org.graffiti.plugins.ios.exporters.graphml
Methods in org.graffiti.plugins.ios.exporters.graphml with parameters of type Graph Modifier and Type Method Description booleanGraphMLWriter. validFor(Graph g)voidGraphMLgzWriter. write(OutputStream stream, Graph g)voidGraphMLWriter. write(OutputStream stream, Graph g) - 
Uses of Graph in org.graffiti.plugins.ios.exporters.graphviz
Methods in org.graffiti.plugins.ios.exporters.graphviz with parameters of type Graph Modifier and Type Method Description voidDOTreader. read(InputStream in, Graph g)voidDOTreader. read(Reader in, Graph g)booleanDOTSerializer. validFor(Graph g)voidDOTSerializer. write(OutputStream out, Graph g) - 
Uses of Graph in org.graffiti.plugins.ios.importers
Methods in org.graffiti.plugins.ios.importers that return Graph Modifier and Type Method Description static GraphTypedAttributeService. createTypedHashMapAttributes(Graph g)Methods in org.graffiti.plugins.ios.importers with parameters of type Graph Modifier and Type Method Description static GraphTypedAttributeService. createTypedHashMapAttributes(Graph g) - 
Uses of Graph in org.graffiti.plugins.ios.importers.gml
Methods in org.graffiti.plugins.ios.importers.gml that return Graph Modifier and Type Method Description Graphparser. getGraph()Returns the read in graph from the parser.GraphGMLReader. read(InputStream in)Reads in a graph from the given input stream.Methods in org.graffiti.plugins.ios.importers.gml with parameters of type Graph Modifier and Type Method Description voidGMLReader. read(InputStream in, Graph g)Reads in a graph from the given input stream.voidGMLReader. read(Reader reader, Graph newGraph) - 
Uses of Graph in org.graffiti.plugins.ios.importers.graphml
Methods in org.graffiti.plugins.ios.importers.graphml with parameters of type Graph Modifier and Type Method Description voidGraphMLReader. read(InputStream in, Graph g)voidGraphMLReader. read(Reader reader, Graph newGraph) - 
Uses of Graph in org.graffiti.plugins.ios.importers.graphml.parser
Methods in org.graffiti.plugins.ios.importers.graphml.parser with parameters of type Graph Modifier and Type Method Description voidGraphMLParser. parse(InputStream in, Graph g)Parses the givenInputStreamand adds the read in data to the givenGraph.voidGraphMLParser. parse(Reader reader, Graph g)Constructors in org.graffiti.plugins.ios.importers.graphml.parser with parameters of type Graph Constructor Description GraphMLFilter(XMLReader parent, Graph graph)Constructs a newGraphMLFilter. - 
Uses of Graph in org.graffiti.plugins.views.defaults
Methods in org.graffiti.plugins.views.defaults with parameters of type Graph Modifier and Type Method Description voidGraffitiView. setGraph(Graph g)Sets the graph this view displays. - 
Uses of Graph in org.graffiti.plugins.views.matrix
Methods in org.graffiti.plugins.views.matrix with parameters of type Graph Modifier and Type Method Description voidMatrixView. setGraph(Graph graph)Constructors in org.graffiti.plugins.views.matrix with parameters of type Graph Constructor Description MatrixModel(Graph graph)Constructs a new matrix model.MatrixView(Graph graph)Constructs a new matrix view. - 
Uses of Graph in org.graffiti.selection
Methods in org.graffiti.selection that return types with arguments of type Graph Modifier and Type Method Description Collection<Graph>Selection. getGraph() - 
Uses of Graph in org.graffiti.session
Methods in org.graffiti.session that return Graph Modifier and Type Method Description GraphSession. getGraph()Returns the graph of this session.Constructors in org.graffiti.session with parameters of type Graph Constructor Description EditorSession(Graph graph)Constructs a newEditorSession.GraphConstraintChecker(Graph g, ConstraintCheckerListener ccl)Constructs a newGraphConstraintCheckerchecking constraints on the specifiedGraph.Session(Graph graph)Constructs a new session instance with the given graph. - 
Uses of Graph in org.graffiti.undo
Constructors in org.graffiti.undo with parameters of type Graph Constructor Description AddEdgeEdit(Edge edge, Graph graph, Map<GraphElement,GraphElement> geMap)Constructor for AddEdgeEdit.AddNodeEdit(Node node, Graph graph, Map<GraphElement,GraphElement> geMap)Constructor for AddNodeEdit.ChangeAttributesEdit(Graph graph, Map attributeToOldValueMap, Map geMap)Creates a newAttributeChangeEditobject.ChangeAttributesEdit(Graph graph, Attribute attribute, Map geMap)Creates a newAttributeChangeEditobject.GraphElementsDeletionEdit(Collection<GraphElement> graphElemList, Graph graph, Map<GraphElement,GraphElement> geMap)GraphElementsEdit(Graph graph, Map<GraphElement,GraphElement> geMap)Create a nesGraphElementsEdit. - 
Uses of Graph in org.vanted.animation
Constructors in org.vanted.animation with parameters of type Graph Constructor Description Animator(Graph graph)Creates an animator will perform a single loop forever.Animator(Graph graph, int noLoops)Creates an animator that will automatically calculate the loop duration to be the same as the animation who's loop duration is largestAnimator(Graph graph, int noLoops, double loopDuration)Creates an animator that needs to have its loop duration manually specified.Animator(Graph graph, int noLoops, int loopDuration, TimeUnit timeUnit)Creates an animator that needs to have its loop duration manually specified.Animator(Graph graph, int noLoops, LoopDuration loopDuration)Creates an animator that needs to have its loop duration manually specified.Animator(Graph graph, NumberOfLoops noLoops)Creates an animator that will automatically calculate the loop duration to be the same as the animation who's loop duration is largest - 
Uses of Graph in org.vanted.plugins.layout.multilevelframework
Subinterfaces of Graph in org.vanted.plugins.layout.multilevelframework Modifier and Type Interface Description interfaceCoarsenedGraphAdds a method to get theMergedNodes of a coarsening level to theGraphinterface.Methods in org.vanted.plugins.layout.multilevelframework that return Graph Modifier and Type Method Description GraphMultilevelGraph. getTopLevel()Get the topmost (i.e.Methods in org.vanted.plugins.layout.multilevelframework with parameters of type Graph Modifier and Type Method Description voidForceDirectedLayoutWrapper. attach(Graph g, Selection s)voidMultilevelFrameworkLayout. attach(Graph g, Selection selection)voidLayoutAlgorithmWrapper. execute(Graph graph)Execute the algorithm, assuming an empty selectionvoidLayoutAlgorithmWrapper. execute(Graph graph, Selection selection)Constructors in org.vanted.plugins.layout.multilevelframework with parameters of type Graph Constructor Description MergedNode(Graph g)Deprecated.MergedNode(Graph g, Set<Node> nodes)Create a newMergedNode.MergedNode(Graph g, CollectionAttribute col)Deprecated.MultilevelGraph(Graph level_0)Create aMultilevelGraph. - 
Uses of Graph in org.vanted.plugins.layout.stressminimization
Methods in org.vanted.plugins.layout.stressminimization with parameters of type Graph Modifier and Type Method Description voidBackgroundExecutionAlgorithm. attach(Graph g, Selection selection)