-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskPoint.java
More file actions
45 lines (22 loc) · 1.91 KB
/
Copy pathTaskPoint.java
File metadata and controls
45 lines (22 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package Breccia.parser;
/** A task point in Breccia.
*
*/ @TagName("TaskPoint") @DataReflector
public interface TaskPoint extends Point {
// ━━━ G r a n u m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
/** The default implementation returns ‘TaskPoint’.
*/
public default @Override String tagName() { return "TaskPoint"; }
// ━━━ P a r s e S t a t e ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
/** The default implementation returns {@linktask Typestamp#taskPoint taskPoint}.
*/
public default @Override int typestamp() { return Typestamp.taskPoint; }
// ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
/** The end of a task point.
*/
public static interface End extends Point.End {
// ━━━ P a r s e S t a t e ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
/** The default implementation returns {@linktask Typestamp#taskPointEnd taskPointEnd}.
*/
public default @Override int typestamp() { return Typestamp.taskPointEnd; }}}
// Copyright © 2021 Michael Allan. Licence MIT.