
eu.interedition.text.xml.XMLElementStart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-core Show documentation
Show all versions of text-core Show documentation
Stand-off Markup/Annotation Text Model
The newest version!
package eu.interedition.text.xml;
import eu.interedition.text.Name;
import java.util.Map;
/**
* @author Gregor Middell
*/
public class XMLElementStart {
private final Name name;
private final Map attributes;
private final long offset;
public XMLElementStart(Name name, Map attributes, long offset) {
this.name = name;
this.attributes = attributes;
this.offset = offset;
}
public Name getName() {
return name;
}
public Map getAttributes() {
return attributes;
}
public long getOffset() {
return offset;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy