
org.nasdanika.html.app.viewparts.TableOfContentsBaseViewPart Maven / Gradle / Ivy
package org.nasdanika.html.app.viewparts;
import org.nasdanika.html.app.ViewPart;
/**
* Base class for tables of content.
* @author Pavel
*
*/
public abstract class TableOfContentsBaseViewPart implements ViewPart {
protected String role;
protected Object header;
protected int depth;
public TableOfContentsBaseViewPart(
String role,
Object header,
int depth) {
this.role = role;
this.header = header;
this.depth = depth;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy