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

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


  public ShortBinding() {
    super("short");
  }

  protected AbstractDescriptor createDescriptor(String value, Element element, Parse parse) {
    ShortDescriptor shortDescriptor = new ShortDescriptor();
    Short shortValue;
    try {
      shortValue = new Short(value);
    } catch (NumberFormatException e) {
      parse.addProblem(createValueExceptionMessage("'"+value+"' cannot be parsed to a short", element), element);
      return null;
    }
    shortDescriptor.setValue(shortValue);
    return shortDescriptor;
  }
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.wire.descriptor.ShortDescriptor

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.