return new RegExpMatch[] {};
}
else {
Vector mV = new Vector();
while( me.hasMoreElements() ) {
REMatch m = (REMatch) me.nextElement();
mV.addElement( new GnuRegExpMatch( m ) );
}
RegExpMatch[] rem = new RegExpMatch[ mV.size() ];
mV.copyInto( rem );
return rem;