Package com.aichamorro.dal.dataquery.annotations

Examples of com.aichamorro.dal.dataquery.annotations.ModelName


 
  @SuppressWarnings("unchecked")
  public void visit(DataQueryVisitor visitor) {
    visitor.setType(_queryType);
   
    ModelName modelName = ((ModelName)_modelClass.getAnnotation(ModelName.class));
    visitor.setModel( (null != modelName && modelName.value().length() > 0) ? modelName.value() : _modelClass.getSimpleName());     
   
    if( null != _payload ) {
      visitor.setPayload(payloadAsHashMap());
    }
    if( _where != null ) {
View Full Code Here

TOP

Related Classes of com.aichamorro.dal.dataquery.annotations.ModelName

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.