net.thevpc.commons.md.docusaurus.DocusaurusPart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thevpc-common-md-docusaurus Show documentation
Show all versions of thevpc-common-md-docusaurus Show documentation
Docusaurus parser and templating support Library
The newest version!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package net.thevpc.commons.md.docusaurus;
/**
*
* @author thevpc
*/
public class DocusaurusPart {
private String title;
private DocusaurusFile[] pages;
public DocusaurusPart(String title, DocusaurusFile[] pages) {
this.title = title;
this.pages = pages;
}
public String getTitle() {
return title;
}
public DocusaurusFile[] getPages() {
return pages;
}
@Override
public String toString() {
return "DocusaurusPart{" +title + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy