View Javadoc
1 /* 2 * SortInfo.java 3 * 4 * Created on February 7, 2003, 6:07 AM 5 */ 6 7 package com.mlw.fps.model.business.bean; 8 9 import java.io.Serializable; 10 /*** 11 * 12 * @author Matthew Wilson 13 */ 14 public interface SortInfo extends Serializable 15 { 16 /*** Getter for property direction. 17 * @return Value of property direction. 18 */ 19 public Integer getDirection(); 20 21 /*** Setter for property direction. 22 * @param direction New value of property direction. 23 */ 24 public void setDirection(Integer direction); 25 26 /*** Getter for property column. 27 * @return Value of property column. 28 */ 29 public String getColumn(); 30 31 /*** Setter for property column. 32 * @param column New value of property column. 33 */ 34 public void setColumn(String column); 35 36 }

This page was automatically generated by Maven