001package org.kuali.coeus.propdev.api.editable;
002
003
004public interface ProposalColumnsToAlterContract {
005
006    String getColumnName();
007
008    String getColumnLabel();
009
010    Integer getDataLength();
011
012    String getDataType();
013
014    boolean getHasLookup();
015
016    String getLookupClass();
017
018    String getLookupReturn();
019}