Uses of Interface
org.gephi.project.api.Workspace
-
Packages that use Workspace Package Description org.gephi.project.api org.gephi.project.impl org.gephi.project.io org.gephi.project.spi -
-
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.impl
Classes in org.gephi.project.impl that implement Workspace Modifier and Type Class Description classWorkspaceImplFields in org.gephi.project.impl with type parameters of type Workspace Modifier and Type Field Description private List<Workspace>WorkspaceProviderImpl. workspacesMethods in org.gephi.project.impl that return Workspace Modifier and Type Method Description WorkspaceProjectControllerImpl. duplicateWorkspace(Workspace workspace)protected WorkspaceWorkspaceProviderImpl. getPrecedingWorkspace(Workspace workspace)WorkspaceProjectImpl. getWorkspace(int id)WorkspaceWorkspaceProviderImpl. getWorkspace(int id)Workspace[]WorkspaceProviderImpl. getWorkspaces()WorkspaceProjectControllerImpl. newWorkspace(Project project)WorkspaceProjectControllerImpl. openNewWorkspace()Methods in org.gephi.project.impl that return types with arguments of type Workspace Modifier and Type Method Description List<Workspace>ProjectImpl. getWorkspaces()Methods in org.gephi.project.impl with parameters of type Workspace Modifier and Type Method Description voidProjectControllerImpl. deleteWorkspace(Workspace workspace)WorkspaceProjectControllerImpl. duplicateWorkspace(Workspace workspace)private voidProjectControllerImpl. fireWorkspaceEvent(ProjectControllerImpl.EventType event, Workspace workspace)protected WorkspaceWorkspaceProviderImpl. getPrecedingWorkspace(Workspace workspace)voidProjectControllerImpl. openWorkspace(Workspace workspace)protected voidWorkspaceProviderImpl. removeWorkspace(Workspace workspace)voidProjectControllerImpl. renameWorkspace(Workspace workspace, String name)voidProjectImpl. setCurrentWorkspace(Workspace workspace)protected voidWorkspaceProviderImpl. setCurrentWorkspace(Workspace currentWorkspace)voidProjectControllerImpl. setSource(Workspace workspace, String source) -
Uses of Workspace in org.gephi.project.io
Fields in org.gephi.project.io declared as Workspace Modifier and Type Field Description private WorkspaceDuplicateTask. workspaceMethods in org.gephi.project.io with parameters of type Workspace Modifier and Type Method Description private WorkspaceImplDuplicateTask. duplicateWorkspace(Workspace workspace)private voidDuplicateTask. duplicateWorkspaceModel(Workspace workspace, Workspace newWorkspace, WorkspaceBytesPersistenceProvider persistenceProvider)private voidDuplicateTask. duplicateWorkspaceModel(Workspace workspace, Workspace newWorkspace, WorkspaceXMLPersistenceProvider persistenceProvider)static voidGephiReader. readWorkspaceChildren(Workspace workspace, XMLStreamReader reader, WorkspaceXMLPersistenceProvider persistenceProvider)private voidLoadTask. readWorkspaceChildrenBytes(WorkspaceBytesPersistenceProvider persistenceProvider, Workspace workspace, ZipFile zipFile)private voidLoadTask. readWorkspaceChildrenXML(WorkspaceXMLPersistenceProvider persistenceProvider, Workspace workspace, ZipFile zipFile)private static voidGephiReader. readWorkspaceMetadata(XMLStreamReader reader, Workspace workspace)static voidGephiWriter. writeWorkspace(XMLStreamWriter writer, Workspace workspace)private voidSaveTask. writeWorkspace(Workspace workspace, OutputStream outputStream, ZipOutputStream zipOut)static voidGephiWriter. writeWorkspaceChildren(XMLStreamWriter writer, Workspace workspace, WorkspaceXMLPersistenceProvider persistenceProvider)private voidSaveTask. writeWorkspaceChildrenBytes(Workspace workspace, WorkspaceBytesPersistenceProvider persistenceProvider, DataOutputStream outputStream, ZipOutputStream zipOut)private voidSaveTask. writeWorkspaceChildrenXML(Workspace workspace, WorkspaceXMLPersistenceProvider persistenceProvider, OutputStream outputStream, ZipOutputStream zipOut)Constructors in org.gephi.project.io with parameters of type Workspace Constructor Description DuplicateTask(Workspace workspace) -
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.
-