1 19 20 26 package org.netbeans.modules.xml.wsdl.ui.cookies; 27 28 import org.netbeans.modules.xml.wsdl.model.WSDLComponent; 29 import org.openide.nodes.Node; 30 31 32 38 public class WSDLAttributeCookie implements Node.Cookie { 39 40 private String mAttrName; 41 42 private WSDLComponent mElement; 43 44 45 public WSDLAttributeCookie(String attrName, 46 WSDLComponent element) { 47 48 this.mAttrName = attrName; 49 this.mElement = element; 50 } 51 52 public WSDLComponent getWSDLComponent() { 53 return this.mElement; 54 } 55 56 public String getAttributeName() { 57 return this.mAttrName; 58 } 59 } 60 | Popular Tags |