|
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-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.modules.cvsclient.commands;
import java.io.*;
import org.openide.util.*;
import org.openide.util.actions.SystemAction;
import org.openide.util.actions.CallableSystemAction;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JMenuItem;
import org.openide.awt.JMenuPlus;
import javax.swing.JMenu;
import org.netbeans.modules.cvsclient.IndependantClient;
import org.netbeans.modules.cvsclient.FsCommandFactory;
import org.netbeans.modules.javacvs.commands.FileSystemCommand;
/**
* Subclass of TopComponent that is used within the JavaCvs mode.
* @author mkleint
*/
public class JavaCvsTopComponent extends org.openide.windows.TopComponent {
private volatile PersistentCommandDisplayer displayer;
static final long serialVersionUID = 5519624846009571015L;
/** Creates new JavaCvsTopComponent */
public JavaCvsTopComponent() {
super();
putClientProperty("PersistenceType", "Never"); //NOI18N
// http://www.netbeans.org/issues/show_bug.cgi?id=24199
// the TabPolicy property's value makes sure that the tab is not shown
// for the topcomponent when it is alone in the mode.
putClientProperty("TabPolicy", "HideWhenAlone");
}
public void addDisplayer(PersistentCommandDisplayer displ) {
displayer = displ;
add(displ.getComponent());
}
public PersistentCommandDisplayer getEqualDisplayer(File file, Class type, Object comparisonData) {
if (displayer == null) return null;
if (displayer.equalDisplayedData(file, type, comparisonData)) {
return displayer;
}
return null;
}
public PersistentCommandDisplayer getDisplayer() {
return displayer;
}
/** Get the system actions which will appear in
* the popup menu of this component.
*
|
| ... 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.