11 package com.google.scrollview.ui;
24 import javax.swing.JMenuItem;
31 class SVMenuItem
extends SVAbstractMenuItem {
32 public String value = null;
33 public String desc = null;
35 SVMenuItem(
int id, String name, String v, String d) {
36 super(
id, name,
new JMenuItem(name));
47 public void performAction(SVWindow window,
SVEventType eventType) {
49 window.showInputDialog(desc, value,
id, eventType);
51 window.showInputDialog(name, value,
id, eventType);
57 public String getValue() {