KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > websvc > design > multiview > MultiViewSupportProvider


1 /*
2  * MultiViewSupportProvider.java
3  *
4  * Created on March 6, 2007, 3:04 PM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

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 /**
18  *
19  * @author Ajit
20  */

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