Package org.araneaframework.uilib

Examples of org.araneaframework.uilib.DataItemTypeViolatedException


   * Sets <code>DataItem</code> value.
   * @param value <code>DataItem</code> value.
   */
  public void setValue(Object value) {
    if (value != null && !(typeClass.isAssignableFrom(value.getClass())))
      throw new DataItemTypeViolatedException(getValueType(), value.getClass());
   
    this.dirty = true;
    this.value = value;
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.uilib.DataItemTypeViolatedException

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.