1 package org.jbpm.context.exe.variableinstance; 2 3 import org.jbpm.context.exe.*; 4 import org.jbpm.context.log.variableinstance.*; 5 6 public class DoubleInstance extends VariableInstance { 7 8 private static final long serialVersionUID = 1L; 9 10 protected Double value = null; 11 12 protected boolean supports(Class clazz) { 13 return (Double .class==clazz); 14 } 15 16 public Object getObject() { 17 return value; 18 } 19 20 public void setObject(Object value) { 21 token.addLog(new DoubleUpdateLog(this, this.value, (Double ) value)); 22 this.value = (Double ) value; 23 } 24 } 25 | Popular Tags |