org.zwobble.mammoth.internal.documents.Bookmark Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mammoth Show documentation
Show all versions of mammoth Show documentation
Convert Word documents to simple and clean HTML
package org.zwobble.mammoth.internal.documents;
public class Bookmark implements DocumentElement {
private final String name;
public Bookmark(String name) {
this.name = name;
}
public String getName() {
return name;
}
@Override
public T accept(DocumentElementVisitor visitor) {
return visitor.visit(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy