blob: 621f0407f6d36c121b6e3ba40e289d44fe7e78d6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
* All rights reserved. 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.wst.xml.core.internal.search;
import org.eclipse.wst.common.core.search.pattern.SearchPattern;
public class TargetNamespaceReferencePattern extends SearchPattern {
String namespaceURI;
public TargetNamespaceReferencePattern(int matchRule, String namespaceuri) {
super(matchRule);
namespaceURI = namespaceuri;
}
public TargetNamespaceReferencePattern(String namespaceuri) {
super();
namespaceURI = namespaceuri;
}
}