Java tutorial
/* * Maui, Maltcms User Interface. * Copyright (C) 2008-2014, The authors of Maui. All rights reserved. * * Project website: http://maltcms.sf.net * * Maui may be used under the terms of either the * * GNU Lesser General Public License (LGPL) * http://www.gnu.org/licenses/lgpl.html * * or the * * Eclipse Public License (EPL) * http://www.eclipse.org/org/documents/epl-v10.php * * As a user/recipient of Maui, you may choose which license to receive the code * under. Certain files or entire directories may not be covered by this * dual license, but are subject to licenses compatible to both LGPL and EPL. * License exceptions are explicitly declared in all relevant files or in a * LICENSE file in the relevant directories. * * Maui is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. Please consult the relevant license documentation * for details. */ package maltcms.ui.fileHandles.serialized; import java.awt.event.ActionEvent; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.JComponent; import org.jfree.chart.JFreeChart; import org.netbeans.core.spi.multiview.CloseOperationState; import org.netbeans.core.spi.multiview.MultiViewElement; import org.netbeans.core.spi.multiview.MultiViewElementCallback; import org.openide.awt.UndoRedo; import org.openide.util.Lookup; import org.openide.util.lookup.Lookups; /** * * @author nilshoffmann */ public class JFCView implements MultiViewElement { private MultiViewElementCallback callback = null; private JFCPanel jfcv = null; /** * */ public JFCView() { this.jfcv = new JFCPanel(); Action doNothing = new AbstractAction() { @Override public void actionPerformed(ActionEvent e) { //do nothing } }; this.jfcv.getActionMap().put("doNothing", doNothing); } /** * * @param chart */ public void setChart(JFreeChart chart) { this.jfcv.setChart(chart); } /** * * @return */ public JFCPanel getJFCPanel() { return this.jfcv; } /** * */ @Override public void componentOpened() { // TODO add custom code on component opening } /** * */ @Override public void componentClosed() { // TODO add custom code on component closing } /** * * @return */ @Override public JComponent getVisualRepresentation() { return this.jfcv; } /** * * @return */ @Override public JComponent getToolbarRepresentation() { return this.jfcv.getToolBar(); } /** * * @param mvec */ @Override public void setMultiViewCallback(MultiViewElementCallback mvec) { this.callback = mvec; } /** * * @return */ @Override public CloseOperationState canCloseElement() { return CloseOperationState.STATE_OK; } /** * * @return */ @Override public Action[] getActions() { // if(callback!=null) { // return callback.createDefaultActions(); // }else{ // return new Action[]{}; // } return new Action[] { new AbstractAction() { @Override public void actionPerformed(ActionEvent ae) { } } }; } /** * * @return */ @Override public Lookup getLookup() { return Lookups.singleton(this); } /** * */ @Override public void componentShowing() { if (callback != null) { callback.updateTitle("Chart view"); } } /** * */ @Override public void componentHidden() { } /** * */ @Override public void componentActivated() { if (callback != null) { callback.updateTitle("Chart view"); } } /** * */ @Override public void componentDeactivated() { } /** * * @return */ @Override public UndoRedo getUndoRedo() { return UndoRedo.NONE; } }