Package org.jbpm.pvm.internal.wire.descriptor

Examples of org.jbpm.pvm.internal.wire.descriptor.ByteDescriptor


  public ByteBinding() {
    super("byte");
  }

  protected AbstractDescriptor createDescriptor(String value, Element element, Parse parse) {
    ByteDescriptor byteDescriptor = new ByteDescriptor();
    Byte byteValue;
    try {
      byteValue = Byte.parseByte(value);
      byteDescriptor.setValue(byteValue);
      return byteDescriptor;

    } catch (NumberFormatException e) {
      parse.addProblem(createValueExceptionMessage("'"+value+"' cannot be parsed to a byte", element), element);
    }
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.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.