1 19 20 package org.netbeans.modules.websvc.wsdl.xmlutils; 21 22 26 public class ElementAttrInfo { 27 28 private String elementName; 29 private String attributeName; 30 private String attributeValue; 31 32 33 public ElementAttrInfo(String elementName,String attributeName,String attributeValue) { 34 this.elementName=elementName; 35 this.attributeName=attributeName; 36 this.attributeValue=attributeValue; 37 } 38 public String getElementName(){ 39 return elementName; 40 } 41 public String getAttributeName(){ 42 return attributeName; 43 } 44 public String getAttributeValue(){ 45 return attributeValue; 46 } 47 48 } 49 | Popular Tags |