1 11 12 package org.eclipse.pde.internal.ui.editor.cheatsheet.simple; 13 14 import java.util.EventObject ; 15 16 20 public class NewCommandKeyEvent extends EventObject { 21 22 private static final long serialVersionUID = 1L; 23 24 private String fKey; 25 26 private String fValue; 27 28 33 public NewCommandKeyEvent(Object source, String key, String value) { 34 super(source); 35 fKey = key; 36 fValue = value; 37 } 38 39 42 public String getKey() { 43 return fKey; 44 } 45 46 49 public String getValue() { 50 return fValue; 51 } 52 53 } 54 | Popular Tags |