1 23 package org.objectweb.medor.expression.api; 24 25 import org.objectweb.jorm.type.api.PType; 26 import java.util.Date ; 27 28 32 public interface VariableOperand extends Operand { 33 34 37 void setType(PType type); 38 39 43 void setValue(boolean p) throws TypingException; 44 45 49 void setValue(int p) throws TypingException; 50 51 55 void setValue(byte p) throws TypingException; 56 57 61 void setValue(short p) throws TypingException; 62 63 67 void setValue(long p) throws TypingException; 68 69 73 void setValue(float p) throws TypingException; 74 75 79 void setValue(double p) throws TypingException; 80 81 85 void setValue(char p) throws TypingException; 86 87 91 void setValue(String p) throws TypingException; 92 93 97 void setValue(Date p) throws TypingException; 98 99 103 void setValue(Object p) throws TypingException; 104 } 105 | Popular Tags |