Package org.palo.viewapi

Examples of org.palo.viewapi.Group


  }
 
  private final XObject[] getGroups(List<Group> groups) {
    XObject[] ret = new XObject[groups.size()];
    for(int i=0;i<ret.length;++i) {
      Group grp = groups.get(i);
      ret[i] = (XGroup) XConverter.createX(grp);
//      ret[i] = (XGroup) WPaloAdminCache.getXObject(grp); //XConverter.createGroup(grp);
//      WPaloAdminCache.add(ret[i], grp);
    }
    return ret;
View Full Code Here

TOP

Related Classes of org.palo.viewapi.Group

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.