Examples of classDescriptionForObjects()


Examples of com.webobjects.eocontrol.EODataSource.classDescriptionForObjects()

      // page, WO reuses the component for a new dataSource. If this DS
      // doesn't have the
      // sort order keys required it leads to a KVC error later on. We fix
      // this here to re-init
      // the sort ordering from the rules.
      if (old != null && eodatasource != null && ObjectUtils.notEqual(eodatasource.classDescriptionForObjects(), old.classDescriptionForObjects())) {
        setSortOrderingsOnDisplayGroup(sortOrderings(), displayGroup());
      }
    }
  }
View Full Code Here

Examples of com.webobjects.eocontrol.EODataSource.classDescriptionForObjects()

   */
  @Override
  public void setDataSource(EODataSource ds) {
    EODataSource old = dataSource();
    super.setDataSource(ds);
    if(old != null && ds != null && ObjectUtils.notEqual(old.classDescriptionForObjects(), ds.classDescriptionForObjects())) {
      setSortOrderings(NSArray.EmptyArray);
    }
  }

  /**
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.