blob: a3f7ef68c8248f909cdbb713c15589e94180d7cc [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.rest.nodes;
import java.awt.Image;
import java.beans.BeanInfo;
import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import org.netbeans.api.project.Project;
import org.netbeans.modules.websvc.rest.model.api.RestServicesModel;
import org.openide.filesystems.FileUtil;
import org.openide.loaders.DataFolder;
import org.openide.nodes.AbstractNode;
import org.openide.nodes.Children;
import org.openide.nodes.Node;
import org.openide.util.HelpCtx;
import org.openide.util.ImageUtilities;
import org.openide.util.NbBundle;
public class SubResourceLocatorsNode extends AbstractNode { //implements PropertyChangeListener{
private Project project;
private static final Image SUB_RESOURCE_LOCATORS_BADGE = ImageUtilities.loadImage( "org/netbeans/modules/websvc/rest/nodes/resources/SubResourceLocators.png", true ); // NOI18N
static Icon folderIconCache;
static Icon openedFolderIconCache;
private String serviceName;
public SubResourceLocatorsNode(Project project, RestServicesModel model,
String serviceName) {
super(Children.create(new SubResourceLocatorsChildrenFactory(
project, model, serviceName), true));
this.serviceName = serviceName;
setDisplayName(NbBundle.getBundle(SubResourceLocatorsNode.class).getString("LBL_SubResourceLocators"));
}
public Image getIcon( int type ) {
return computeIcon( false, type );
}
public Image getOpenedIcon( int type ) {
return computeIcon( true, type );
}
/**
* Returns Icon of folder on active platform
* @param opened should the icon represent opened folder
* @return the folder icon
*/
static synchronized Icon getFolderIcon (boolean opened) {
if (openedFolderIconCache == null) {
Node n = DataFolder.findFolder(FileUtil.getConfigRoot()).getNodeDelegate();
openedFolderIconCache = new ImageIcon(n.getOpenedIcon(BeanInfo.ICON_COLOR_16x16));
folderIconCache = new ImageIcon(n.getIcon(BeanInfo.ICON_COLOR_16x16));
}
if (opened) {
return openedFolderIconCache;
}
else {
return folderIconCache;
}
}
private Image computeIcon( boolean opened, int type ) {
Icon icon = getFolderIcon(opened);
Image image = ((ImageIcon)icon).getImage();
image = ImageUtilities.mergeImages(image, SUB_RESOURCE_LOCATORS_BADGE, 7, 7 );
return image;
}
public Action[] getActions(boolean context) {
return new Action[]{
};
}
public HelpCtx getHelpCtx() {
return HelpCtx.DEFAULT_HELP;
}
}