Package org.gephi.project.api
Interface WorkspaceMetaData
-
- All Known Implementing Classes:
WorkspaceMetaDataImpl
public interface WorkspaceMetaData
Hosts user data about a workspace.This information is also saved to the project file.
- Author:
- Mathieu Bastian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Returns the description of this workspace.String
getTitle()
Returns the title of this workspace.void
setDescription(String description)
Sets the workspace's description.void
setTitle(String title)
Sets the workspace's title.
-
-
-
Method Detail
-
getDescription
String getDescription()
Returns the description of this workspace.- Returns:
- the workspace's description or empty string if missing
-
setDescription
void setDescription(String description)
Sets the workspace's description.- Parameters:
description
- description
-
getTitle
String getTitle()
Returns the title of this workspace.- Returns:
- the workspace's title or empty string if missing
-
setTitle
void setTitle(String title)
Sets the workspace's title.- Parameters:
title
- title
-
-