Package org.objectstyle.wolips.eomodeler.core.model

Examples of org.objectstyle.wolips.eomodeler.core.model.EODatabaseDataSource


  private boolean _isSorted;

  public DisplayGroup(WooModel model) {
    _wooModel = model;
    _wooModel.getModelGroup();
    _databaseDataSource = new EODatabaseDataSource(_wooModel.getModelGroup());
    _detailDataSource = new EODetailDataSource(_wooModel.getModelGroup());
    _dataSource = _databaseDataSource;
    _qualificationIndex = 0;
    _qualifierFormat = QUALIFICATION_FORMATS[0];
    _className = "WODisplayGroup";
View Full Code Here


        setMasterEntityName(ds.getMasterClass());
        setDetailKeyName(ds.getDetailKey());
        _detailDataSource = ds;
      }
      else if (_dataSource instanceof EODatabaseDataSource) {
        EODatabaseDataSource ds = (EODatabaseDataSource) _dataSource;
        _hasMasterDetail = false;
        setEntityName(ds.getEntityName());
        _databaseDataSource = ds;
      }

      if (_entityName == null) {
        // XXX Invalid display group
View Full Code Here

TOP

Related Classes of org.objectstyle.wolips.eomodeler.core.model.EODatabaseDataSource

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.