Uses of Class
de.cau.cs.kieler.kiml.grana.AbstractInfoAnalysis

Packages that use AbstractInfoAnalysis
de.cau.cs.kieler.kiml.grana Base classes for implementation of analysis algorithms and classes that provide the analyses as services. 
de.cau.cs.kieler.kiml.grana.handlers Handlers for the GRANA user interface. 
de.cau.cs.kieler.kiml.grana.ui The graph analysis ui contributions. 
de.cau.cs.kieler.kiml.grana.views The graph analysis views. 
 

Uses of AbstractInfoAnalysis in de.cau.cs.kieler.kiml.grana
 

Subclasses of AbstractInfoAnalysis in de.cau.cs.kieler.kiml.grana
 class AbstractSimpleInfoAnalysis
          Analyses that derive from this class can define dependencies without using the Dependency class.
 

Methods in de.cau.cs.kieler.kiml.grana that return AbstractInfoAnalysis
 AbstractInfoAnalysis AnalysisServices.getAnalysisById(String id)
          Returns the analysis specified by id or null if no such analysis exists.
 

Methods in de.cau.cs.kieler.kiml.grana that return types with arguments of type AbstractInfoAnalysis
abstract  Collection<AbstractInfoAnalysis> AbstractAnalysisBundle.getAnalyses()
          Returns a collection of all analyses provided by this bundle.
 List<AbstractInfoAnalysis> AnalysisCategory.getAnalyses()
          Returns the analyses of this category.
 Collection<AbstractInfoAnalysis> AnalysisServices.getAnalyses()
          Returns the analyses.
 Collection<AbstractInfoAnalysis> IAnalysisBundle.getAnalyses()
          Returns a collection of all analyses provided by this bundle.
 List<AbstractInfoAnalysis> AnalysisServices.getExecutionOrder(List<AbstractInfoAnalysis> analyses)
          Takes a list of analyses and returns a list that includes the given analysis and their dependencies in an order so that all dependencies of an analysis are listed before it.
 

Methods in de.cau.cs.kieler.kiml.grana with parameters of type AbstractInfoAnalysis
 void AnalysisServices.analysisAdded(AbstractInfoAnalysis analysis)
          Called when an analysis is added to a bundle.
 void IBundleChangedListener.analysisAdded(AbstractInfoAnalysis analysis)
          Called when an analysis is added to a bundle.
 void AnalysisServices.analysisRemoved(AbstractInfoAnalysis analysis)
          Called when an analysis is removed from a bundle.
 void IBundleChangedListener.analysisRemoved(AbstractInfoAnalysis analysis)
          Called when an analysis is removed from a bundle.
protected  void AbstractAnalysisBundle.notifyListenersAnalysisAdded(AbstractInfoAnalysis analysis)
          Notifies all listeners that an analysis was added.
protected  void AbstractAnalysisBundle.notifyListenersAnalysisRemoved(AbstractInfoAnalysis analysis)
          Notifes all listeners that an analysis was removed.
 

Method parameters in de.cau.cs.kieler.kiml.grana with type arguments of type AbstractInfoAnalysis
 List<AbstractInfoAnalysis> AnalysisServices.getExecutionOrder(List<AbstractInfoAnalysis> analyses)
          Takes a list of analyses and returns a list that includes the given analysis and their dependencies in an order so that all dependencies of an analysis are listed before it.
 

Uses of AbstractInfoAnalysis in de.cau.cs.kieler.kiml.grana.handlers
 

Methods in de.cau.cs.kieler.kiml.grana.handlers that return types with arguments of type AbstractInfoAnalysis
protected  List<AbstractInfoAnalysis> AbstractAnalysisHandler.getLastAnalysesSelection()
          Returns the last selected analyses from the preference store.
 

Method parameters in de.cau.cs.kieler.kiml.grana.handlers with type arguments of type AbstractInfoAnalysis
protected  void AbstractAnalysisHandler.setLastAnalysesSelection(List<AbstractInfoAnalysis> analyses)
          Sets the last selected analyses in the preference store.
 

Constructor parameters in de.cau.cs.kieler.kiml.grana.handlers with type arguments of type AbstractInfoAnalysis
AnalysisEffect(KNode theparentNode, List<AbstractInfoAnalysis> theanalyses, boolean theprogressBar)
          Creates an analysis effect.
 

Uses of AbstractInfoAnalysis in de.cau.cs.kieler.kiml.grana.ui
 

Methods in de.cau.cs.kieler.kiml.grana.ui that return types with arguments of type AbstractInfoAnalysis
 List<AbstractInfoAnalysis> AnalysisSelectionDialog.getAnalyses()
          Returns the selected analyses.
 Map<AbstractInfoAnalysis,AnalysisCategory> AnalysisContentProvider.getParentMap()
          Returns the map that maps the analyses on their parents.
 

Methods in de.cau.cs.kieler.kiml.grana.ui with parameters of type AbstractInfoAnalysis
static Object DiagramAnalyzer.analyse(IEditorPart editorPart, EditPart editPart, AbstractInfoAnalysis analysis, boolean progressBar)
          Starts the given analysis on a diagram.
static Object DiagramAnalyzer.analyse(IEditorPart editorPart, EditPart editPart, AbstractInfoAnalysis analysis, Map<String,Object> options, boolean progressBar)
          Starts the given analysis on a diagram with predefined options.
static Object DiagramAnalyzer.analyse(KNode parentNode, AbstractInfoAnalysis analysis, boolean progressBar)
          Starts the given analysis on a diagram.
static Object DiagramAnalyzer.analyse(KNode parentNode, AbstractInfoAnalysis analysis, Map<String,Object> options, boolean progressBar)
          Starts the given analysis on a diagram with predefined options.
 

Method parameters in de.cau.cs.kieler.kiml.grana.ui with type arguments of type AbstractInfoAnalysis
static Map<String,Object> DiagramAnalyzer.analyse(IEditorPart editorPart, EditPart editPart, List<AbstractInfoAnalysis> analyses, boolean progressBar)
          Starts the given analyses on the diagram.
static Map<String,Object> DiagramAnalyzer.analyse(IEditorPart editorPart, EditPart editPart, List<AbstractInfoAnalysis> analyses, Map<String,Object> options, boolean progressBar)
          Starts the given analyses on the diagram with predefined options.
static Map<String,Object> DiagramAnalyzer.analyse(KNode parentNode, List<AbstractInfoAnalysis> analyses, boolean progressBar)
          Starts the given analyses on the kgraph.
static Map<String,Object> DiagramAnalyzer.analyse(KNode parentNode, List<AbstractInfoAnalysis> analyses, Map<String,Object> options, boolean progressBar)
          Starts the given analyses on the kgraph with predefined options.
static String HtmlResultGenerator.generate(List<AbstractInfoAnalysis> analyses, Map<String,Object> results)
          Generates html for the given analyses and results using the registered visualizers.
 

Constructor parameters in de.cau.cs.kieler.kiml.grana.ui with type arguments of type AbstractInfoAnalysis
AnalysisResultDialog(Shell parentShell, List<AbstractInfoAnalysis> analyses, Map<String,Object> results)
          Constructs the dialog.
 

Uses of AbstractInfoAnalysis in de.cau.cs.kieler.kiml.grana.views
 

Method parameters in de.cau.cs.kieler.kiml.grana.views with type arguments of type AbstractInfoAnalysis
 void AnalysisResultViewPart.setAnalysisResults(List<AbstractInfoAnalysis> analyses, Map<String,Object> results)
          Sets the analysis results.