Package de.japrost.staproma.spm
Interface SpmFormat
-
- All Known Implementing Classes:
GtdSpmFormat
,SimpleSpmFormat
public interface SpmFormat
A format for SPM-Files.- Author:
- alexxismachine (Ulrich David)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
parseLines(Task rootTask, java.util.List<java.lang.String> lines)
Parse the lines into the given root task.Task
parseLines(java.util.List<java.lang.String> lines)
Deprecated.
-
-
-
Method Detail
-
parseLines
@Deprecated Task parseLines(java.util.List<java.lang.String> lines)
Deprecated.Parse the lines into a new root task.- Parameters:
lines
- the lines to parse- Returns:
- the root task containing the converted lines.
-
parseLines
void parseLines(Task rootTask, java.util.List<java.lang.String> lines)
Parse the lines into the given root task.- Parameters:
rootTask
- the root task to add the lines to.lines
- the lines to parse.
-
-