1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.megatim.manuel.core.generate;
|
| import java.util.ArrayList;
| import java.util.List;
|
| /** Nœud du sommaire de l'aide : un titre, une cible (page#ancre) éventuelle, et des enfants. */
| public class HelpToc {
| public String title;
| public String href; // null pour un nœud « dossier » non cliquable (ex. Illustrations)
| public List<HelpToc> children = new ArrayList<>();
|
| public HelpToc() {}
|
| public HelpToc(String title, String href) {
| this.title = title;
| this.href = href;
| }
| }
|
|