1 19 package org.netbeans.modules.xslt.model.impl; 20 21 import org.netbeans.modules.xslt.model.CopyOf; 22 import org.netbeans.modules.xslt.model.XslComponent; 23 import org.netbeans.modules.xslt.model.XslVisitor; 24 import org.w3c.dom.Element ; 25 26 27 31 class CopyOfImpl extends ValidationCopyNsSpecImpl implements CopyOf { 32 33 34 CopyOfImpl( XslModelImpl model, Element element ) { 35 super( model , element ); 36 } 37 38 CopyOfImpl( XslModelImpl model ){ 39 super( model , XslElements.COPY_OF ); 40 } 41 42 45 @Override 46 public void accept( XslVisitor visitor ) 47 { 48 visitor.visit( this ); 49 } 50 51 54 @Override 55 public Class <? extends XslComponent> getComponentType() 56 { 57 return CopyOf.class; 58 } 59 60 } 61 | Popular Tags |