1 19 20 28 29 package org.netbeans.modules.xml.wsdl.ui.commands; 30 31 import org.netbeans.modules.xml.wsdl.model.WSDLComponent; 32 import org.netbeans.modules.xml.wsdl.ui.api.property.PropertyAdapter; 33 34 38 public abstract class CommonAttributePropertyAdapter extends PropertyAdapter { 39 40 public static final String VALUE = "value"; 42 public CommonAttributePropertyAdapter(WSDLComponent mWSDLConstruct) { 43 super(mWSDLConstruct); 44 45 } 46 47 public abstract void setValue(String value); 48 49 50 public abstract String getValue(); 51 } 52 | Popular Tags |