All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.interedition.text.xml.XMLElementStart Maven / Gradle / Ivy

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