/*
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
*/
//
package com.sun.portal.ffj.actions;
import org.openide.util.NbBundle;
public class ExecuteRestartAction extends ExecuteAction {
public String getName() {
return NbBundle.getMessage(ExecuteAction.class, "LBL_ExecuteRestartAction");
}
protected boolean restart() {
return true;
}
}
|