00001 00065 package com.arcle.rmt.j2se.model.domimpl.rqml; 00066 00067 import org.w3c.dom.Element; 00068 import com.arcle.rmt.rqml.*; 00069 import com.arcle.rmt.j2se.model.domimpl.*; 00070 00076 public class ProductImpl extends RQMLSecondClassImpl implements Product { 00077 00084 public ProductImpl(Element elem, RQMLSecondClassFactory fac) { 00085 super(elem, fac); 00086 } 00087 00088 public Name getName() { 00089 return (Name) getFirstChild("name"); 00090 } 00091 00092 00093 public Description getDescription() { 00094 return (Description) getFirstChild("description"); 00095 } 00096 }