1 16 17 package org.apache.commons.betwixt; 18 19 25 public class AttributeDescriptor extends NodeDescriptor { 26 27 28 public AttributeDescriptor() { 29 } 30 31 36 public AttributeDescriptor(String localName) { 37 super( localName ); 38 } 39 40 47 public AttributeDescriptor(String localName, String qualifiedName, String uri) { 48 super(localName, qualifiedName, uri); 49 } 50 51 56 public String toString() { 57 return "AttributeDescriptor[qname=" + getQualifiedName() 58 + ",class=" + getPropertyType() + "]"; 59 } 60 } 61 | Popular Tags |