diff options
author | Tor Norbye <tnorbye@google.com> | 2010-11-19 13:02:51 -0800 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2010-11-19 13:02:51 -0800 |
commit | d59c1f5ad1dc6219fd901940a8c40f320dad5685 (patch) | |
tree | c34dc576e5a2c706727d5b27b8d3f32508a8e8bf /eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/api/MenuAction.java | |
parent | a64e53e7f4e0b5799bab64b9443b7067c9eb0bea (diff) | |
parent | a2d7874ed23bfc2fa7665cc84901e0f4781b4e51 (diff) | |
download | sdk-d59c1f5ad1dc6219fd901940a8c40f320dad5685.zip sdk-d59c1f5ad1dc6219fd901940a8c40f320dad5685.tar.gz sdk-d59c1f5ad1dc6219fd901940a8c40f320dad5685.tar.bz2 |
Merge "Add per-view custom initialization logic"
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/api/MenuAction.java')
-rwxr-xr-x | eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/api/MenuAction.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/api/MenuAction.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/api/MenuAction.java index 210e565..d82049d 100755 --- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/api/MenuAction.java +++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/api/MenuAction.java @@ -152,7 +152,7 @@ public abstract class MenuAction { /** * The base class for {@link Toggle} and {@link Choices}. */ - public static abstract class Action extends MenuAction { + public static class Action extends MenuAction { /** * A callback executed when the action is selected in the context menu. @@ -176,7 +176,7 @@ public abstract class MenuAction { * @param callback The callback executed when the action is selected. * Must not be null. */ - private Action(String id, String title, String groupId, IMenuCallback callback) { + public Action(String id, String title, String groupId, IMenuCallback callback) { super(id, title); mGroupId = groupId; mCallback = callback; |