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

org.openfast.Node Maven / Gradle / Ivy

The newest version!
package org.openfast;

import java.util.List;
import java.util.Map;

public interface Node {
    List getNodes();
    List getChildren(QName name);
    String getAttribute(QName name);
    
    QName getNodeName();
    Map getAttributes();
    boolean hasAttribute(QName name);
    boolean hasChild(QName name);
    
    void addNode(Node node);
    void setAttribute(QName name, String value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy