Package org.jbpm.wire.descriptor

Examples of org.jbpm.wire.descriptor.ByteDescriptor


* @author Guillaume Porcher (documentation)
*/
public class ByteBinding extends BasicTypeBinding {

  protected AbstractDescriptor createDescriptor(String value) {
    ByteDescriptor byteDescriptor = new ByteDescriptor();
    Byte byteValue;
    try {
      byteValue = new Byte(value);
    } catch (NumberFormatException e) {
      throw new NumberFormatException("'"+value+"' cannot be parsed to a byte");
    }
    byteDescriptor.setValue(byteValue);
    return byteDescriptor;
  }
View Full Code Here

TOP

Related Classes of org.jbpm.wire.descriptor.ByteDescriptor

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.