01: /*
02: * Copyright 2005-2006 The Kuali Foundation.
03: *
04: *
05: * Licensed under the Educational Community License, Version 1.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.opensource.org/licenses/ecl1.php
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package edu.iu.uis.eden.help;
18:
19: /**
20: * Model bean representing a piece of help information which adds extra information about fields and
21: * data in the user interface.
22: *
23: * @author xqi
24: * @author shenl
25: */
26: public class HelpEntry {
27: private Long helpId;
28: private String helpName;
29: private String helpText;
30: private String helpKey;
31: private Integer lockVerNbr;
32:
33: public Long getHelpId() {
34: return helpId;
35: }
36:
37: public void setHelpId(Long helpId) {
38: this .helpId = helpId;
39: }
40:
41: public String getHelpName() {
42: return helpName;
43: }
44:
45: public void setHelpName(String helpName) {
46: this .helpName = helpName;
47: }
48:
49: public String getHelpText() {
50: return helpText;
51: }
52:
53: public void setHelpText(String helpText) {
54: this .helpText = helpText;
55: }
56:
57: public Integer getLockVerNbr() {
58: return lockVerNbr;
59: }
60:
61: public void setLockVerNbr(Integer lockVerNbr) {
62: this .lockVerNbr = lockVerNbr;
63: }
64:
65: public String getHelpKey() {
66: return helpKey;
67: }
68:
69: public void setHelpKey(String helpKey) {
70: this.helpKey = helpKey;
71: }
72: }
|