01: /*
02: * Copyright 2007 Outerthought bvba and Schaubroeck nv
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.outerj.daisy.workflow.commonimpl;
17:
18: import org.outerj.daisy.workflow.WfListItem;
19: import org.outerj.daisy.i18n.I18nMessage;
20:
21: public class WfListItemImpl implements WfListItem {
22: private Object value;
23: private I18nMessage label;
24:
25: public WfListItemImpl(Object value, I18nMessage label) {
26: this .value = value;
27: this .label = label;
28: }
29:
30: public Object getValue() {
31: return value;
32: }
33:
34: public I18nMessage getLabel() {
35: return label;
36: }
37: }
|