GraphLab Project

graphlab.platform.extension
Interface Extension

All Superinterfaces:
BasicExtension
All Known Subinterfaces:
AlgorithmExtension, AtomAnimatorExtension, GraphActionExtension, GraphGeneratorExtension, GraphReaderExtension, GraphReportExtension<t>, GraphWriterExtension, VisualizationExtension
All Known Implementing Classes:
AcyclicCheckerAnim, AdjMatrixEigenValues, AppVertexCoverAnim, AutomaticUpdatorAction, BackwardTrees, BananaTreeGenerator, BellmanFordAnim, BFSAnim, BiconnectedComponentsAnim, BinaryTreeGenerator, ChromaticNumber, CircleGenerator, CircularDispatchVisualization, CircularTreeVisualization, CmnGenerator, ColoringReport, CompleteGraphGenerator, CompleteSelectionAction, ConnectorReportExtension, DFSAnim, DijkstraAnim, FileOpener, GeneralizedPetersonGenerator, GirthSize, GraphPower, HelloWorldReport, HelmGraph, HierarchicalTreeVisualization, IsEulerian, KenserGraphGenerator, KmnGenerator, KmnoGenerator, KruskalAnim, LatexCAD, LatexWriter, LineGraph, Load, LoadMatrix, LoadSimpleGraph, MakeSelectionComplementGraph, MakeSelectionCompleteGraph, MakeSelectionEmptyGraph, MaxAndMinDegree, MaxIndependentSetReport, More, NumOfConnectedComponents, NumOfEdges, NumOfQuadrangle, NumOfTriangles, NumOfVertices, NumOfVerticesReport, NumOfVerticesWithDegK, OrderKReport, OrderOneReport, PathGenerator, PmnGenerator, PrimAnim, PrismGraph, RandomGenerator, RandomTreeGenerator, SampleColoringExtension, Save, SaveImage, SaveMatrix, SaveSimpleGraph, ScaleInSelection, ScaleOutSelection, ShowReports, SparseTreeVisualization, StarGenerator, TestInducedSubgraphs, TopologicalSortAnim, TreeGenerator, VerticesDegreesList, VisitGraphLabHomePage, WheelGenerator

public interface Extension
extends BasicExtension

The bsae interface for creating extensions, extensions are very simple classess that extend capabilities of program in a predefined way, for example one extension can add a new data input format to program.

the extensions can normally be used by putting them on Extensions directory in program directory, they will be loaded on the next run of program.

Author:
azin azadi

Method Summary
 java.lang.String getDescription()
           
 java.lang.String getName()
           
 

Method Detail

getName

java.lang.String getName()

getDescription

java.lang.String getDescription()

GraphLab Project