00001 00059 package com.arcle.rmt.j2se.bridge.copy.rqml; 00060 00061 import com.arcle.rmt.rqml.*; 00062 import com.arcle.rmt.j2se.bridge.copy.ChildCopier; 00063 00069 public class NameCopy extends StringOnlyCopy { 00070 public NameCopy(ChildCopier cc) { 00071 super(cc); 00072 } 00073 00074 00075 public boolean copy(RQMLSecondClass source, RQMLSecondClass destination) { 00076 if (!(source instanceof Name && destination instanceof Name)) { 00077 return false; 00078 } 00079 return super.copy(source, destination); 00080 } 00081 00082 } 00083