
org.openfast.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openfast Show documentation
Show all versions of openfast Show documentation
OpenFAST is a 100% Java implementation of the FAST Protocol.
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