Lines Matching refs:QName

38 import javax.xml.namespace.QName;
55 private final QName name;
57 private final Map<QName, String> attributes;
73 public static AssertionData createAssertionData(final QName name) throws IllegalArgumentException {
87 public static AssertionData createAssertionParameterData(final QName name) throws IllegalArgumentException {
105 public static AssertionData createAssertionData(final QName name, final String value, final Map<QName, String> attributes, boolean optional, boolean ignorable) throws IllegalArgumentException {
121 public static AssertionData createAssertionParameterData(final QName name, final String value, final Map<QName, String> attributes) throws IllegalArgumentException {
142 AssertionData(QName name, String value, Map<QName, String> attributes, ModelNode.Type type, boolean optional, boolean ignorable) throws IllegalArgumentException {
148 this.attributes = new HashMap<QName, String>();
172 this.attributes = new HashMap<QName, String>();
190 public boolean containsAttribute(final QName name) {
228 public String getAttributeValue(final QName name) {
244 public Map<QName, String> getAttributes() {
246 return new HashMap<QName, String>(attributes);
261 public Set<Map.Entry<QName, String>> getAttributesSet() {
263 return new HashSet<Map.Entry<QName, String>>(attributes.entrySet());
273 public QName getName() {
320 public String removeAttribute(final QName name) {
332 public void setAttribute(final QName name, final String value) {
411 for(Map.Entry<QName, String> entry : attributes.entrySet()) {
412 final QName aName = entry.getKey();