Package org.ice.db

Examples of org.ice.db.Viewer


   * a specified set of fields
   * @param fields the fields to be visible
   * @return the masked object
   */
  public Object view(String fields)  {
    return new Viewer(this, fields).serialize();
  }
View Full Code Here


   * @return the list containing masked objects
   */
  public ArrayList<Object> view(ArrayList<? extends Table> list, String fields)  {
    ArrayList<Object> result = new ArrayList<Object>();
    for(Object obj: list)  {
      result.add(new Viewer(obj, fields).serialize());
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.ice.db.Viewer

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.