Package org.jbpm.wire.descriptor

Examples of org.jbpm.wire.descriptor.CharacterDescriptor


* @see WireParser
*/
public class CharBinding extends BasicTypeBinding {

  protected AbstractDescriptor createDescriptor(String value) {
    CharacterDescriptor characterDescriptor = new CharacterDescriptor();
    if (value.length()!=1) {
      throw new IllegalArgumentException("length of value must be 1");
    }
    char c = value.charAt(0);
    characterDescriptor.setValue(new Character(c));
    return characterDescriptor;
  }
View Full Code Here

TOP

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

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.