blob: f60fb71514d5b5a960980541f2e3a74861aca5c8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.websvc.client;
import java.util.HashMap;
import java.util.Map;
import org.netbeans.api.project.Project;
import org.netbeans.api.project.SourceGroup;
import org.netbeans.modules.websvc.api.client.WebServicesClientView;
import org.netbeans.modules.websvc.spi.client.WebServicesClientViewFactory;
import org.netbeans.modules.websvc.spi.client.WebServicesClientViewImpl;
import org.netbeans.modules.websvc.spi.client.WebServicesClientViewProvider;
import org.openide.filesystems.FileObject;
import org.openide.nodes.Node;
/**
*
* @author Lukas Jungmann
*/
@org.openide.util.lookup.ServiceProvider(service=org.netbeans.modules.websvc.spi.client.WebServicesClientViewProvider.class)
public class CustomWebServicesClientViewProvider implements WebServicesClientViewProvider {
private Map<FileObject, WebServicesClientView> cache = new HashMap<FileObject, WebServicesClientView>();
/** Creates a new instance of WebServicesClientViewProvider */
public CustomWebServicesClientViewProvider() {
}
public WebServicesClientView findWebServicesClientView(FileObject file) {
if (file.getExt().equals("ws")) {
WebServicesClientView em = cache.get(file.getParent());
if (em == null) {
em = WebServicesClientViewFactory.createWebServicesClientView(new CustomWebServicesClientViewImpl(file));
cache.put(file.getParent(), em);
}
return em;
}
return null;
}
private static final class CustomWebServicesClientViewImpl implements WebServicesClientViewImpl {
private FileObject fo;
CustomWebServicesClientViewImpl(FileObject fo) {
this.fo = fo;
}
public Node createWebServiceClientView(Project p) {
throw new UnsupportedOperationException("Not supported yet.");
}
public Node createWebServiceClientView(SourceGroup sg) {
throw new UnsupportedOperationException("Not supported yet.");
}
public Node createWebServiceClientView(FileObject wsdlFolder) {
throw new UnsupportedOperationException("Not supported yet.");
}
}
}