1 30 package com.genimen.djeneric.tools.scriptengine.core; 31 32 public class EditorEventDefinition 33 { 34 String _eventName; 35 String _eventTitle; 36 String _option; 37 38 public EditorEventDefinition() 39 { 40 } 41 42 public EditorEventDefinition(String name, String title, String option) 43 { 44 setEventName(name); 45 setEventTitle(title); 46 setOption(option); 47 } 48 49 public String getEventName() 50 { 51 return _eventName; 52 } 53 54 public String getEventTitle() 55 { 56 return _eventTitle; 57 } 58 59 public String getOption() 60 { 61 return _option; 62 } 63 64 public void setEventName(String string) 65 { 66 _eventName = string; 67 } 68 69 public void setEventTitle(String string) 70 { 71 _eventTitle = string; 72 } 73 74 public void setOption(String string) 75 { 76 _option = string; 77 } 78 79 } | Popular Tags |