KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > ui > actions > variables > SelectAllVariablesAction


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.debug.internal.ui.actions.variables;
12
13 import org.eclipse.debug.internal.ui.actions.SelectAllAction;
14 import org.eclipse.debug.ui.IDebugView;
15
16 public class SelectAllVariablesAction extends SelectAllAction {
17
18     
19     protected String JavaDoc getActionId() {
20         return IDebugView.SELECT_ALL_ACTION + ".Variables"; //$NON-NLS-1$
21
}
22
23     /* (non-Javadoc)
24      * @see org.eclipse.debug.internal.ui.actions.selection.AbstractRemoveAllActionDelegate#initialize()
25      */

26     protected void initialize() {
27     }
28
29     /* (non-Javadoc)
30      * @see org.eclipse.debug.internal.ui.actions.selection.AbstractRemoveAllActionDelegate#isEnabled()
31      */

32     protected boolean isEnabled() {
33         // TODO: only enable when stuff present
34
return true;
35     }
36 }
37
Popular Tags