blob: 8adc8d072b17f92a08316604a529c19feb31fb9d [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.maven.jaxws.nodes;
import java.awt.Image;
import org.netbeans.modules.websvc.api.jaxws.wsdlmodel.WsdlPort;
import org.openide.filesystems.FileObject;
import org.openide.nodes.AbstractNode;
import org.openide.util.HelpCtx;
import org.openide.util.ImageUtilities;
import org.openide.util.lookup.AbstractLookup;
import org.openide.util.lookup.InstanceContent;
/** Node representing WS Port
*
* @author mkuchtiak
*/
public class PortNode extends AbstractNode {
public PortNode(WsdlPort port) {
this(port, new InstanceContent());
}
private PortNode(WsdlPort port, InstanceContent content) {
super(new PortChildren(port),new AbstractLookup(content));
setName(port.getName());
setDisplayName(port.getName());
content.add(port);
}
@Override
public Image getIcon(int type){
return ImageUtilities.loadImage("org/netbeans/modules/maven/jaxws/resources/wsport.png"); //NOI18N
}
@Override
public Image getOpenedIcon(int type){
return getIcon( type);
}
@Override
public HelpCtx getHelpCtx() {
return HelpCtx.DEFAULT_HELP;
}
// Handle deleting:
@Override
public boolean canDestroy() {
return false;
}
}