1 19 20 package org.netbeans.modules.websvc.core.jaxws.actions; 21 22 import org.netbeans.modules.websvc.api.jaxws.project.config.Service; 23 import org.openide.filesystems.FileObject; 24 import org.openide.loaders.*; 25 26 public class JaxWsCookieFactory { 27 28 public static JaxWsClassesCookie getJaxWsClassesCookie(Service service, FileObject f ) { 29 if (f != null) { 30 return new JaxWsClassesCookieImpl(service,f); 31 } 32 return null; 33 } 34 35 36 } 37 | Popular Tags |