1 19 package org.netbeans.modules.xslt.model.impl; 20 21 import org.netbeans.modules.xslt.model.MatchSpec; 22 import org.w3c.dom.Element ; 23 24 28 abstract class MatchableQNameableSeqCtorImpl extends 29 QNameableSequenceConstructor implements MatchSpec 30 { 31 32 MatchableQNameableSeqCtorImpl( XslModelImpl model, Element e ) { 33 super(model, e); 34 } 35 36 MatchableQNameableSeqCtorImpl( XslModelImpl model, XslElements type ) 37 { 38 super(model, type); 39 } 40 41 44 public String getMatch() { 45 return getAttribute( XslAttributes.MATCH ); 46 } 47 48 51 public void setMatch( String match ) { 52 setAttribute( XslAttributes.MATCH, match ); 53 } 54 55 } | Popular Tags |