KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > modfact > jmi > repository > simpletrl > IfValueExpImpl


1 package org.objectweb.modfact.jmi.repository.simpletrl;
2 import simpletrl.*;
3 import org.objectweb.modfact.jmi.reflect.*;
4 public class IfValueExpImpl extends RefObjectImpl implements simpletrl.IfValueExp { public simpletrl.ValueExp getCond() throws javax.jmi.reflect.JmiException {
5      return (simpletrl.ValueExp) refGetValue("cond");
6      }
7     public void setCond(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException {
8      refSetValue("cond",newValue);
9      }
10     public simpletrl.ValueExp getElseExp() throws javax.jmi.reflect.JmiException {
11      return (simpletrl.ValueExp) refGetValue("elseExp");
12      }
13     public void setElseExp(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException {
14      refSetValue("elseExp",newValue);
15      }
16     public simpletrl.ValueExp getThenExp() throws javax.jmi.reflect.JmiException {
17      return (simpletrl.ValueExp) refGetValue("thenExp");
18      }
19     public void setThenExp(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException {
20      refSetValue("thenExp",newValue);
21      }
22 }
23
Popular Tags