001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: package org.netbeans.modules.vmd.midp.components.handlers;
042:
043: import org.netbeans.modules.vmd.api.codegen.CodeMultiGuardedLevelPresenter;
044: import org.netbeans.modules.vmd.api.codegen.MultiGuardedSection;
045: import org.netbeans.modules.vmd.api.model.*;
046: import org.netbeans.modules.vmd.api.model.presenters.InfoPresenter;
047: import org.netbeans.modules.vmd.midp.components.MidpVersionDescriptor;
048: import org.netbeans.modules.vmd.midp.components.displayables.DisplayableCD;
049: import org.netbeans.modules.vmd.midp.flow.FlowEventHandlerPinBadgePresenter;
050: import org.netbeans.modules.vmd.midp.palette.MidpPaletteProvider;
051: import org.openide.util.NbBundle;
052: import org.openide.util.Utilities;
053:
054: import java.util.Arrays;
055: import java.util.List;
056:
057: /**
058: * @author David Kaspar
059: */
060: public class PreviousScreenEventHandlerCD extends ComponentDescriptor {
061:
062: public static final TypeID TYPEID = new TypeID(
063: TypeID.Kind.COMPONENT, "#PreviousScreenEventHandler"); // NOI18N
064:
065: public static final String ICON_PATH = "org/netbeans/modules/vmd/midp/resources/components/previous_screen_16.png"; // NOI18N
066: public static final String LARGE_ICON_PATH = "org/netbeans/modules/vmd/midp/resources/components/previous_screen_32.png"; // NOI18N
067:
068: public TypeDescriptor getTypeDescriptor() {
069: return new TypeDescriptor(EventHandlerCD.TYPEID, TYPEID, true,
070: false);
071: }
072:
073: public VersionDescriptor getVersionDescriptor() {
074: return MidpVersionDescriptor.MIDP;
075: }
076:
077: public List<PropertyDescriptor> getDeclaredPropertyDescriptors() {
078: return null;
079: }
080:
081: @Override
082: public PaletteDescriptor getPaletteDescriptor() {
083: return new PaletteDescriptor(
084: MidpPaletteProvider.CATEGORY_PROCESS_FLOW, NbBundle
085: .getMessage(PreviousScreenEventHandlerCD.class,
086: "DISP_PreviousScreenEventHandler"),
087: NbBundle.getMessage(PreviousScreenEventHandlerCD.class,
088: "TTIP_PreviousScreenEventHandler"), ICON_PATH,
089: LARGE_ICON_PATH); // NOI18N
090: }
091:
092: protected List<? extends Presenter> createPresenters() {
093: return Arrays
094: .asList(
095: // info
096: InfoPresenter
097: .createStatic(
098: NbBundle
099: .getMessage(
100: PreviousScreenEventHandlerCD.class,
101: "NAME_PreviousScreenEventHandler"),
102: NbBundle
103: .getMessage(
104: PreviousScreenEventHandlerCD.class,
105: "TYPE_Action"),
106: DisplayableCD.ICON_PATH), // NOI18N
107: // flow
108: new FlowEventHandlerPinBadgePresenter(Utilities
109: .loadImage(ICON_PATH), 0),
110: // code
111: new CodeMultiGuardedLevelPresenter() {
112: protected void generateMultiGuardedSectionCode(
113: MultiGuardedSection section) {
114: section
115: .getWriter()
116: .write(
117: "switchToPreviousDisplayable ();\n"); // NOI18N
118: }
119: });
120: }
121:
122: // TODO - this should be used only them dropping an edge to a target node that is kind of PreviousScreenControllerCD
123: // public static AbstractEventHandlerCreatorPresenter createPreviousScreenEventHandlerCreatorPresenter () {
124: // return new AbstractEventHandlerCreatorPresenter() {
125: // public DesignComponent createReuseEventHandler (DesignComponent eventHandler, DesignComponent eventSource, DesignComponent targetComponent) {
126: // if (eventHandler == null || ! getComponent ().getDocument ().getDescriptorRegistry ().isComponentDescriptorCompatibleWithTypeID (PreviousScreenEventHandlerCD.TYPEID, eventHandler.getComponentDescriptor ()))
127: // eventHandler = getComponent ().getDocument ().createComponent (PSEventHandlerCD.TYPEID);
128: // eventHandler.writeProperty (ExitMidletEventHandlerCD.PROP_MOBILE_DEVICE, PropertyValue.createComponentReference (targetComponent));
129: // return eventHandler;
130: // }
131: // };
132: // }
133:
134: }
|