1 package org.kuali.coeus.propdev.api.budget.editable;
2
3
4 public interface BudgetColumnsToAlterContract {
5
6 String getColumnName();
7
8 String getColumnLabel();
9
10 Integer getDataLength();
11
12 String getDataType();
13
14 boolean getHasLookup();
15
16 String getLookupClass();
17
18 String getLookupReturn();
19 }