Uses of Interface
org.gephi.project.api.Workspace
-
Packages that use Workspace Package Description org.gephi.appearance.api API for manipulating element appearance.org.gephi.filters.api API for graph filtering.org.gephi.filters.spi Interfaces for creating new filter classes.org.gephi.graph.api Complete API description, whereGraphModelis the entry point.org.gephi.io.exporter.api API for exporting data to any support.org.gephi.io.exporter.spi Interfaces for creating new data exporters.org.gephi.io.importer.api API for importing data from any support.org.gephi.io.processor.spi Interfaces that define the way data are unloaded from container and appened to the workspace.org.gephi.layout.api API for real-time layout algorithm tasks and proper user control.org.gephi.preview.api API for Preview rendering.org.gephi.preview.spi Interfaces for creating new renderers, item builders and render targets.org.gephi.project.api API for project and workspace management.org.gephi.project.spi SPI for associating models to workspaces and manage persistence.org.gephi.statistics.api API for statistics and metrics tasks execution.org.gephi.timeline.api API which controls the Timeline, the UI component which allows network exploration over time. -
-
Uses of Workspace in org.gephi.appearance.api
Methods in org.gephi.appearance.api that return Workspace Modifier and Type Method Description WorkspaceAppearanceModel. getWorkspace()Return the workspace this model is associated withMethods in org.gephi.appearance.api with parameters of type Workspace Modifier and Type Method Description AppearanceModelAppearanceController. getModel(Workspace workspace)Returns the appearance model for the given workspace. -
Uses of Workspace in org.gephi.filters.api
Methods in org.gephi.filters.api that return Workspace Modifier and Type Method Description WorkspaceFilterModel. getWorkspace()Methods in org.gephi.filters.api with parameters of type Workspace Modifier and Type Method Description FilterModelFilterController. getModel(Workspace workspace)Returns the filter's model forworkspace. -
Uses of Workspace in org.gephi.filters.spi
Methods in org.gephi.filters.spi with parameters of type Workspace Modifier and Type Method Description FilterBuilder[]CategoryBuilder. getBuilders(Workspace workspace)Returns the filter builders this category builder is building.FilterFilterBuilder. getFilter(Workspace workspace)Builds a newFilterinstance. -
Uses of Workspace in org.gephi.graph.api
Methods in org.gephi.graph.api with parameters of type Workspace Modifier and Type Method Description GraphModelGraphController. getGraphModel(Workspace workspace)Returns the graph model for the givenworkspace. -
Uses of Workspace in org.gephi.io.exporter.api
Methods in org.gephi.io.exporter.api with parameters of type Workspace Modifier and Type Method Description voidExportController. exportFile(File file, Workspace workspace) -
Uses of Workspace in org.gephi.io.exporter.spi
Methods in org.gephi.io.exporter.spi that return Workspace Modifier and Type Method Description WorkspaceExporter. getWorkspace()Returns the workspace from where data are exportedMethods in org.gephi.io.exporter.spi with parameters of type Workspace Modifier and Type Method Description voidExporter. setWorkspace(Workspace workspace)Sets the worksapce from where to export data -
Uses of Workspace in org.gephi.io.importer.api
Methods in org.gephi.io.importer.api with parameters of type Workspace Modifier and Type Method Description voidImportController. process(Container[] containers, Processor processor, Workspace workspace)voidImportController. process(Container container, Processor processor, Workspace workspace) -
Uses of Workspace in org.gephi.io.processor.spi
Methods in org.gephi.io.processor.spi with parameters of type Workspace Modifier and Type Method Description voidProcessor. setWorkspace(Workspace workspace)Sets the destination workspace for the data in the containers. -
Uses of Workspace in org.gephi.layout.api
Methods in org.gephi.layout.api with parameters of type Workspace Modifier and Type Method Description LayoutModelLayoutController. getModel(Workspace workspace)Returns the model in the givenWorkspace. -
Uses of Workspace in org.gephi.preview.api
Methods in org.gephi.preview.api that return Workspace Modifier and Type Method Description WorkspacePreviewModel. getWorkspace()Returns the workspace this model is attached to.Methods in org.gephi.preview.api with parameters of type Workspace Modifier and Type Method Description PreviewModelPreviewController. getModel(Workspace workspace)Returns the preview model inworkspace.RenderTargetPreviewController. getRenderTarget(String name, Workspace workspace)Creates a new render target of the given type in the preview model contained byworkspace.voidPreviewController. refreshPreview(Workspace workspace)Refreshes the preview model inworkspace.voidPreviewController. render(RenderTarget target, Renderer[] renderers, Workspace workspace)Renders the preview model inworkspacetotarget.voidPreviewController. render(RenderTarget target, Workspace workspace)Renders the preview model inworkspacetotarget.booleanPreviewController. sendMouseEvent(PreviewMouseEvent event, Workspace workspace)Sends aPreviewMouseEventto the given workspace. -
Uses of Workspace in org.gephi.preview.spi
Methods in org.gephi.preview.spi with parameters of type Workspace Modifier and Type Method Description voidPreviewMouseListener. mouseClicked(PreviewMouseEvent event, PreviewProperties properties, Workspace workspace)A single click event.voidPreviewMouseListener. mouseDragged(PreviewMouseEvent event, PreviewProperties properties, Workspace workspace)If your listener needs to receive drag events, you must mark the previous press event as consumed.voidPreviewMouseListener. mousePressed(PreviewMouseEvent event, PreviewProperties properties, Workspace workspace)A mouse press event.voidPreviewMouseListener. mouseReleased(PreviewMouseEvent event, PreviewProperties properties, Workspace workspace)If your listener needs to receive release events, you must mark the previous press event as consumed. -
Uses of Workspace in org.gephi.project.api
Methods in org.gephi.project.api that return Workspace Modifier and Type Method Description WorkspaceProjectController. duplicateWorkspace(Workspace workspace)Duplicates the given workspace and adds it to the project.WorkspaceProject. getCurrentWorkspace()Returns the current workspace.WorkspaceProjectController. getCurrentWorkspace()Returns the selected workspace of the current project.WorkspaceWorkspaceProvider. getCurrentWorkspace()Deprecated.Returns the current workspace or null if none.WorkspaceProject. getWorkspace(int id)Retrieve a workspace based on its unique identifier.WorkspaceWorkspaceProvider. getWorkspace(int id)Deprecated.Retrieve a workspace based on its unique identifier.Workspace[]WorkspaceProvider. getWorkspaces()Deprecated.Returns all the workspaces.WorkspaceProjectController. newWorkspace(Project project)Creates and adds a new workspace to the given project.WorkspaceProjectController. openNewWorkspace()Creates and open a new workspace in the current project.Methods in org.gephi.project.api that return types with arguments of type Workspace Modifier and Type Method Description Collection<Workspace>Project. getWorkspaces()Returns all the workspaces.Methods in org.gephi.project.api with parameters of type Workspace Modifier and Type Method Description voidWorkspaceListener. close(Workspace workspace)Notify a workspace will be closed, all data must be destroyed.voidProjectController. deleteWorkspace(Workspace workspace)Deletes the given workspace from its project.WorkspaceProjectController. duplicateWorkspace(Workspace workspace)Duplicates the given workspace and adds it to the project.voidWorkspaceListener. initialize(Workspace workspace)Notify a workspace has been created.voidProjectController. openWorkspace(Workspace workspace)Selects the given workspace as the current workspace of the project.voidProjectController. renameWorkspace(Workspace workspace, String name)Renames the given workspace with the provided string.voidWorkspaceListener. select(Workspace workspace)Notify a workspace has become the selected workspace.voidProjectController. setSource(Workspace workspace, String source)voidWorkspaceListener. unselect(Workspace workspace)Notify another workspace will be selected. -
Uses of Workspace in org.gephi.project.spi
Methods in org.gephi.project.spi that return Workspace Modifier and Type Method Description WorkspaceModel. getWorkspace()Returns the workspace this model is associated with.Methods in org.gephi.project.spi with parameters of type Workspace Modifier and Type Method Description default TController. getModel(Workspace workspace)Returns the model of the given workspace.TController. newModel(Workspace workspace)Creates a new model instance for the given workspace.voidWorkspaceBytesPersistenceProvider. readBytes(DataInputStream stream, Workspace workspace)This is automatically called when loading a project file.voidWorkspaceXMLPersistenceProvider. readXML(XMLStreamReader reader, Workspace workspace)This is automatically called when a start element with the tag name provided in yourgetIdentifiermethod.voidWorkspaceBytesPersistenceProvider. writeBytes(DataOutputStream stream, Workspace workspace)This is automatically called when saving a project file.voidWorkspaceXMLPersistenceProvider. writeXML(XMLStreamWriter writer, Workspace workspace)This is automatically called when saving a project file. -
Uses of Workspace in org.gephi.statistics.api
Methods in org.gephi.statistics.api with parameters of type Workspace Modifier and Type Method Description StatisticsModelStatisticsController. getModel(Workspace workspace)Returns the model in the givenWorkspace. -
Uses of Workspace in org.gephi.timeline.api
Methods in org.gephi.timeline.api with parameters of type Workspace Modifier and Type Method Description TimelineModelTimelineController. getModel(Workspace workspace)Returns the timeline model fromworkspace.
-