1 /*
2 * Copyright 2008 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
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.ole.sys.document.service;
17
18 import java.util.Map;
19
20 import org.kuali.ole.sys.businessobject.AccountingLine;
21 import org.kuali.rice.kns.datadictionary.MaintainableFieldDefinition;
22 import org.kuali.rice.kns.web.ui.Field;
23
24 /**
25 * An interface that represents a transformation on a single field; they can be grouped
26 * together and run at one time by FieldChangingAccountingLineRenderTransformImpl.
27 */
28 public interface AccountingLineFieldRenderingTransformation {
29 /**
30 * Performs a transformation on the field
31 * @param accountingLine the accounting line that is being rendered
32 * @param field the field to transform
33 * @param fieldDefinition the accounting line definition of the accounting line being rendered
34 * @param unconvertedValues a map of unconverted values
35 */
36 public abstract void transformField(AccountingLine accountingLine, Field field, MaintainableFieldDefinition fieldDefinition, Map unconvertedValues);
37 }