1 19 20 package org.netbeans.modules.websvc.registry.model; 21 22 25 public class WebServiceListModelEvent { 26 String websvcGroupId; 27 String websvcId; 28 29 public WebServiceListModelEvent(String id) { 30 websvcGroupId = id; 31 } 32 33 public void setWebServiceGroupId(String id){ 34 websvcGroupId = id; 35 } 36 37 public String getWebServiceGroupId(){ 38 return websvcGroupId; 39 } 40 } 41 | Popular Tags |