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 children = new ArrayList<>(); public HelpToc() {} public HelpToc(String title, String href) { this.title = title; this.href = href; } }