1 9 10 package org.netbeans.modules.websvc.design.multiview; 11 12 import org.netbeans.modules.websvc.core.MultiViewCookie; 13 import org.netbeans.modules.websvc.core.MultiViewCookieProvider; 14 import org.openide.loaders.DataObject; 15 import org.netbeans.modules.websvc.api.jaxws.project.config.Service; 16 17 21 public class MultiViewSupportProvider implements MultiViewCookieProvider { 22 public MultiViewCookie getMultiViewCookie(Service service, DataObject dataObject) { 23 return new MultiViewSupport(service,dataObject); 24 } 25 } 26 | Popular Tags |