blob: f5ef5d745c810e7d19b2f4fd015edb3904670bdc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 24.04.2012 Aaron Digulla.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Aaron Digulla - initial API and implementation and/or initial documentation
*******************************************************************************/
package m4e.patch
import java.util.regex.Pattern;
import m4e.Glob;
class QualifierPatch {
/** Apply this patch to these POMs */
Glob pattern
/** The new version string for matching POMs */
String version
QualifierPatch( String pattern, String version ) {
this.pattern = compile( pattern )
this.version = version
}
Glob compile( String text ) {
return new Glob( text, '[^:]*' )
}
boolean appliesTo( String key ) {
if( pattern.matches() ) {
return true
}
return false
}
}