01: /*
02: * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.ffj.actions;
07:
08: import org.openide.util.HelpCtx;
09: import org.openide.util.NbBundle;
10:
11: public class PortletXMLExecuteRestartAction extends
12: PortletXMLExecuteAction {
13:
14: public String getName() {
15: return NbBundle.getMessage(ExecuteAction.class,
16: "LBL_PortletXMLExecuteRestartAction");
17: }
18:
19: public HelpCtx getHelpCtx() {
20: return HelpCtx.DEFAULT_HELP;
21: // If you will provide context help then use:
22: // return new HelpCtx (ExecuteAction.class);
23: }
24:
25: protected boolean restart() {
26: return true;
27: }
28: }
|