1 package org.objectweb.modfact.jmi.repository.simpletrl; 2 import simpletrl.*; 3 import org.objectweb.modfact.jmi.reflect.*; 4 public class IfStatementExpImpl extends RefObjectImpl implements simpletrl.IfStatementExp { 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 java.util.Collection getThenStatements() throws javax.jmi.reflect.JmiException { 11 return (java.util.Collection ) refGetValue("thenStatements"); 12 } 13 public java.util.Collection getElseStatements() throws javax.jmi.reflect.JmiException { 14 return (java.util.Collection ) refGetValue("elseStatements"); 15 } 16 } 17 | Popular Tags |