Package com.fins.gt.model

Examples of com.fins.gt.model.FilterInfo


   
    return info;
  }
 
  public static FilterInfo createFilterInfo(JSONObject modelJS){
    FilterInfo info=new FilterInfo();

    info.setColumnId(modelJS.getString("columnId") );
    info.setFieldName(modelJS.getString("fieldName") );
    info.setLogic(modelJS.getString("logic") );
    info.setValue(modelJS.getString("value") );
   
    return info;
  }
View Full Code Here

TOP

Related Classes of com.fins.gt.model.FilterInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.