01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.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.opensource.org/licenses/ecl1.php
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.kuali.module.chart.lookup.keyvalues;
17:
18: import java.util.ArrayList;
19: import java.util.Collections;
20: import java.util.Iterator;
21: import java.util.List;
22:
23: import org.kuali.core.lookup.keyvalues.KeyValuesBase;
24: import org.kuali.core.service.KeyValuesService;
25: import org.kuali.core.web.ui.KeyLabelPair;
26: import org.kuali.kfs.context.SpringContext;
27: import org.kuali.module.chart.bo.codes.MandatoryTransferEliminationCode;
28:
29: /**
30: * This class creates a new finder for our forms view (creates a drop-down of {@link MandatoryTransferEliminationCode}s)
31: */
32: public class MandatoryTransferEliminationCodeValuesFinder extends
33: KeyValuesBase {
34:
35: /**
36: * Creates a list of {@link MandatoryTransferEliminationCode}s using their code as their key, and their code "-" name as the
37: * display value
38: *
39: * @see org.kuali.core.lookup.keyvalues.KeyValuesFinder#getKeyValues()
40: */
41: public List getKeyValues() {
42:
43: // get a list of all Mandatory Transfer Elimination Codes
44: KeyValuesService boService = SpringContext
45: .getBean(KeyValuesService.class);
46: List mteCodes = (List) boService
47: .findAll(MandatoryTransferEliminationCode.class);
48:
49: // calling comparator.
50: MandatoryTransferEliminationCodeComparator mteCodeComparator = new MandatoryTransferEliminationCodeComparator();
51:
52: // sort using comparator.
53: Collections.sort(mteCodes, mteCodeComparator);
54:
55: // create a new list (code, descriptive-name)
56: List labels = new ArrayList();
57:
58: for (Iterator iter = mteCodes.iterator(); iter.hasNext();) {
59: MandatoryTransferEliminationCode mteCode = (MandatoryTransferEliminationCode) iter
60: .next();
61: labels.add(new KeyLabelPair(mteCode.getCode(), mteCode
62: .getCode()
63: + " - " + mteCode.getName()));
64: }
65:
66: return labels;
67: }
68:
69: }
|