|
What this is
Other links
The source code/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun * Microsystems, Inc. All Rights Reserved. */ package org.netbeans.modules.debugger.projects; import java.io.File; import org.netbeans.api.project.FileOwnerQuery; import org.netbeans.api.project.Project; import org.netbeans.api.project.ProjectInformation; import org.netbeans.spi.viewmodel.NodeModel; import org.netbeans.spi.viewmodel.TreeModel; import org.netbeans.spi.viewmodel.TreeModelListener; import org.netbeans.spi.viewmodel.UnknownTypeException; import org.openide.filesystems.FileObject; import org.openide.filesystems.FileUtil; import org.openide.util.NbBundle; /** * @author Jan Jancura */ public class SourcesNodeModel implements NodeModel { public static final String SOURCE_ROOT = "org/netbeans/modules/debugger/jpda/resources/root"; public static final String FILTER = "org/netbeans/modules/debugger/jpda/resources/Filter"; public String getDisplayName (Object o) throws UnknownTypeException { if (o == TreeModel.ROOT) { return NbBundle.getBundle(SourcesNodeModel.class).getString("CTL_SourcesModel_Column_Name_Name"); } else if (o instanceof String) { File f = new File ((String) o); if (f.exists ()) { FileObject fo = FileUtil.toFileObject (f); Project p = FileOwnerQuery.getOwner (fo); if (p != null) { ProjectInformation pi = (ProjectInformation) p.getLookup (). lookup (ProjectInformation.class); return java.text.MessageFormat.format(NbBundle.getBundle(SourcesNodeModel.class).getString( "CTL_SourcesModel_Column_Name_ProjectSources"), new Object [] { f.getPath(), pi.getDisplayName() }); } return java.text.MessageFormat.format(NbBundle.getBundle(SourcesNodeModel.class).getString( "CTL_SourcesModel_Column_Name_LibrarySources"), new Object [] { f.getPath() }); } else return (String) o; } else throw new UnknownTypeException (o); } public String getShortDescription (Object o) throws UnknownTypeException { if (o == TreeModel.ROOT) return NbBundle.getBundle(SourcesNodeModel.class).getString("CTL_SourcesModel_Column_Name_Desc"); if (o instanceof String) { if (((String) o).startsWith ("D")) return NbBundle.getBundle(SourcesNodeModel.class).getString("CTL_SourcesModel_Column_Name_DescExclusion"); else return NbBundle.getBundle(SourcesNodeModel.class).getString("CTL_SourcesModel_Column_Name_DescRoot"); } else throw new UnknownTypeException (o); } public String getIconBase (Object o) throws UnknownTypeException { if (o instanceof String) { if (((String) o).startsWith ("D")) return FILTER; else return SOURCE_ROOT; } else throw new UnknownTypeException (o); } public void addTreeModelListener (TreeModelListener l) { } public void removeTreeModelListener (TreeModelListener l) { } } |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.