Package org.gephi.project.api
Interface Projects
-
public interface Projects
Hosts the project lists and the currently selected project.- Author:
- Mathieu Bastian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Project
getCurrentProject()
Returns the current project or null if missing.Project[]
getProjects()
Returns an array of all projects.boolean
hasCurrentProject()
Returns true if a project is selected.
-
-
-
Method Detail
-
hasCurrentProject
boolean hasCurrentProject()
Returns true if a project is selected.- Returns:
- true if current project, false otherwise
-
getCurrentProject
Project getCurrentProject()
Returns the current project or null if missing.- Returns:
- current project or null if missing
-
getProjects
Project[] getProjects()
Returns an array of all projects.- Returns:
- project array
-
-