Package com.tll.client.model

Examples of com.tll.client.model.ModelChangeEvent


        mop = ModelChangeOp.DELETED;
        break;
      default:
        throw new IllegalStateException("Unhandled crud op: " + crudOp);
      }
      source.fireEvent(new ModelChangeEvent(mop, result.getModel(), result.getRef(), result.getStatus()));
    }
  }
View Full Code Here


  protected void handleSuccess(AuxDataPayload result) {
    // cache the results
    AuxDataCacheHelper.cache(result);
    super.handleSuccess(result);
    if(source != null)
      source.fireEvent(new ModelChangeEvent(ModelChangeOp.AUXDATA_READY, null, null, result.getStatus()));
  }
View Full Code Here

TOP

Related Classes of com.tll.client.model.ModelChangeEvent

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.