1 19 package org.netbeans.modules.serviceapi; 20 21 import java.util.Collection ; 22 import javax.xml.namespace.QName ; 23 import org.openide.nodes.Node; 24 25 33 public interface ServiceInterface { 34 37 40 InterfaceDescription getInterfaceDescription(); 41 42 45 ServiceComponent getServiceComponent(); 46 47 51 boolean canConnect(ServiceInterface other); 52 53 57 boolean isProvider(); 58 59 62 Node getNode(); 63 } 64 | Popular Tags |