blob: 9b400167e0b137202f334ba01ce61282e8cb4fe1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.transforms;
import java.net.URL;
import java.util.regex.Pattern;
/**
* Class that represents an association between a bundle pattern, a path pattern, and the location of a transformer to apply to any resource that matches both the bundle and path pattern.
*/
public class TransformTuple {
/**
* Constant used when registering transform tuples to identify the type of transformer they should be assigned to.
*/
public static final String TRANSFORMER_TYPE = "equinox.transformerType"; //$NON-NLS-1$
public Pattern bundlePattern;
public Pattern pathPattern;
public URL transformerUrl;
}