Interface NotesAndTasksData
-
public interface NotesAndTasksDataPlug-in data for- Author:
- Kevin Goeser
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceNotesAndTasksData.NoteTaskNote / task data.static classNotesAndTasksData.TaskStateStates for tasks.
-
Field Summary
Fields Modifier and Type Field Description static String[]DEFAULT_CATEGORIESSome default strings for categories.static StringPLUGIN_IDThe plug-in (data) ID.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotesAndTasksData.NoteTaskgetFunctionalDocumentation()Returns the functional ('fachliche') documentation.NotesAndTasksData.NoteTask[]getNotes()NotesAndTasksData.NoteTask[]getTasks()NotesAndTasksData.NoteTaskgetTechnicalDocumentation()Returns the technical (implementation) documentation.voidsetFunctionalDocumentation(NotesAndTasksData.NoteTask doc)Set the functional ('fachliche') documentation.voidsetNotes(NotesAndTasksData.NoteTask[] notes)Setter forgetNotes().voidsetTasks(NotesAndTasksData.NoteTask[] notes)Setter forgetTasks().voidsetTechnicalDocumentation(NotesAndTasksData.NoteTask doc)Set the technical (implementation) documentation.
-
-
-
Field Detail
-
PLUGIN_ID
static final String PLUGIN_ID
The plug-in (data) ID.- See Also:
- Constant Field Values
-
DEFAULT_CATEGORIES
static final String[] DEFAULT_CATEGORIES
Some default strings for categories.
-
-
Method Detail
-
getTechnicalDocumentation
NotesAndTasksData.NoteTask getTechnicalDocumentation()
Returns the technical (implementation) documentation.- Returns:
- The technical documentation.
-
getFunctionalDocumentation
NotesAndTasksData.NoteTask getFunctionalDocumentation()
Returns the functional ('fachliche') documentation.- Returns:
- The functional documentation.
-
setTechnicalDocumentation
void setTechnicalDocumentation(NotesAndTasksData.NoteTask doc)
Set the technical (implementation) documentation.- Parameters:
doc- The technical documentation.
-
setFunctionalDocumentation
void setFunctionalDocumentation(NotesAndTasksData.NoteTask doc)
Set the functional ('fachliche') documentation.- Parameters:
doc- The functional documentation.
-
getNotes
NotesAndTasksData.NoteTask[] getNotes()
- Returns:
- All notes.
-
setNotes
void setNotes(NotesAndTasksData.NoteTask[] notes)
Setter forgetNotes().- Parameters:
notes-
-
getTasks
NotesAndTasksData.NoteTask[] getTasks()
- Returns:
- All tasks
-
setTasks
void setTasks(NotesAndTasksData.NoteTask[] notes)
Setter forgetTasks().- Parameters:
notes-
-
-