KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.modfact.jmi.repository.simpletrl;
2 import simpletrl.*;
3 import org.objectweb.modfact.jmi.reflect.*;
4 public class OperationCallExpImpl extends RefObjectImpl implements simpletrl.OperationCallExp { public String JavaDoc getOpName() throws javax.jmi.reflect.JmiException {
5      return (String JavaDoc) refGetValue("opName");
6      }
7     public void setOpName(String JavaDoc newValue) throws javax.jmi.reflect.JmiException {
8      refSetValue("opName",newValue);
9      }
10     public simpletrl.ValueExp getContext() throws javax.jmi.reflect.JmiException {
11      return (simpletrl.ValueExp) refGetValue("context");
12      }
13     public void setContext(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException {
14      refSetValue("context",newValue);
15      }
16     public java.util.List JavaDoc getArgs() throws javax.jmi.reflect.JmiException {
17      return (java.util.List JavaDoc) refGetValue("args");
18      }
19 }
20
Popular Tags