Interface NotesAndTasksData
-
public interface NotesAndTasksData
Plug-in data for- Author:
- Kevin Goeser
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
NotesAndTasksData.NoteTask
Note / task data.static class
NotesAndTasksData.TaskState
States for tasks.
-
Field Summary
Fields Modifier and Type Field Description static String[]
DEFAULT_CATEGORIES
Some default strings for categories.static String
PLUGIN_ID
The plug-in (data) ID.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotesAndTasksData.NoteTask
getFunctionalDocumentation()
Returns the functional ('fachliche') documentation.NotesAndTasksData.NoteTask[]
getNotes()
NotesAndTasksData.NoteTask[]
getTasks()
NotesAndTasksData.NoteTask
getTechnicalDocumentation()
Returns the technical (implementation) documentation.void
setFunctionalDocumentation(NotesAndTasksData.NoteTask doc)
Set the functional ('fachliche') documentation.void
setNotes(NotesAndTasksData.NoteTask[] notes)
Setter forgetNotes()
.void
setTasks(NotesAndTasksData.NoteTask[] notes)
Setter forgetTasks()
.void
setTechnicalDocumentation(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
-
-
-