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. 
 

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

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.
 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(AbstractAnalysisBundle abstractAnalysisBundle, AbstractInfoAnalysis analysis)
          Called when an analysis is added to the bundle.
 void IBundleChangedListener.analysisAdded(AbstractAnalysisBundle abstractAnalysisBundle, AbstractInfoAnalysis analysis)
          Called when an analysis is added to the bundle.
 void AnalysisServices.analysisRemoved(AbstractAnalysisBundle abstractAnalysisBundle, AbstractInfoAnalysis analysis)
          Called when an analysis is removed from the bundle.
 void IBundleChangedListener.analysisRemoved(AbstractAnalysisBundle abstractAnalysisBundle, AbstractInfoAnalysis analysis)
          Called when an analysis is removed from the 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.
 

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 DiagramAnalyser.analyse(IEditorPart editorPart, EditPart editPart, AbstractInfoAnalysis analysis, boolean progressBar)
          Starts the given analysis on a diagram.
static Object DiagramAnalyser.analyse(KNode parentNode, AbstractInfoAnalysis analysis, boolean progressBar)
          Starts the given analysis on a diagram.
 

Method parameters in de.cau.cs.kieler.kiml.grana.ui with type arguments of type AbstractInfoAnalysis
static Map<String,Object> DiagramAnalyser.analyse(IEditorPart editorPart, EditPart editPart, List<AbstractInfoAnalysis> analyses, boolean progressBar)
          Starts the given analyses on the diagram.
static Map<String,Object> DiagramAnalyser.analyse(KNode parentNode, List<AbstractInfoAnalysis> analyses, boolean progressBar)
          Starts the given analyses on the kgraph.
 

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