00001 00065 package com.arcle.rmt.j2se.model.domimpl.rqml; 00066 00067 import org.w3c.dom.Element; 00068 import com.arcle.rmt.j2se.model.domimpl.RQMLSecondClassFactory; 00069 import com.arcle.rmt.rqml.*; 00070 00076 public class LexiconImpl extends RQMLFirstClassImpl 00077 implements Lexicon { 00078 00085 public LexiconImpl(Element e, RQMLSecondClassFactory f) { 00086 super(e, f); 00087 } 00088 00089 public Definition getDefinition() { 00090 return (Definition) getFirstChild("definition"); 00091 } 00092 00093 public void setDefinition(Definition def) { 00094 throw new UnsupportedOperationException("Not yet implemented"); 00095 } 00096 00097 }