Package org.gephi.project.api
Interface WorkspaceMetaData
-
- All Known Implementing Classes:
WorkspaceMetaDataImpl
public interface WorkspaceMetaDataHosts 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 StringgetDescription()Returns the description of this workspace.StringgetTitle()Returns the title of this workspace.voidsetDescription(String description)Sets the workspace's description.voidsetTitle(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
-
-