KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.modfact.jmi.repository.simpletrl;
2 import simpletrl.*;
3 import org.objectweb.modfact.jmi.reflect.*;
4 public class PropertyAssignExpImpl extends RefObjectImpl implements simpletrl.PropertyAssignExp { public String JavaDoc getPropName() throws javax.jmi.reflect.JmiException {
5      return (String JavaDoc) refGetValue("propName");
6      }
7     public void setPropName(String JavaDoc newValue) throws javax.jmi.reflect.JmiException {
8      refSetValue("propName",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 simpletrl.ValueExp getValue() throws javax.jmi.reflect.JmiException {
17      return (simpletrl.ValueExp) refGetValue("value");
18      }
19     public void setValue(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException {
20      refSetValue("value",newValue);
21      }
22 }
23
Popular Tags