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: //
07: package com.sun.portal.ffj.actions;
08:
09: import org.openide.util.NbBundle;
10:
11: public class ExecuteRestartAction extends ExecuteAction {
12:
13: public String getName() {
14: return NbBundle.getMessage(ExecuteAction.class,
15: "LBL_ExecuteRestartAction");
16: }
17:
18: protected boolean restart() {
19: return true;
20: }
21: }
|