blob: 65a4c559ec606f82eb425e07ee5db9b393fbd624 [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.core.internal.search.matching;
import java.util.HashMap;
import java.util.Map;
import org.xml.sax.Attributes;
public class SAXSearchElement{
Attributes attributes;
String elementName;
String elementNamespace;
Map namespaceMap = new HashMap(); // Map of string prefix keys and namespace
String targetNamespace = ""; //$NON-NLS-1$
public SAXSearchElement() {
super();
}
public Attributes getAttributes() {
return attributes;
}
public String getElementName() {
return elementName;
}
public String getElementNamespace() {
return elementNamespace;
}
public Map getNamespaceMap() {
return namespaceMap;
}
public String getTargetNamespace() {
return targetNamespace;
}
public void setAttributes(Attributes attributes) {
this.attributes = attributes;
}
public void setElementName(String elementName) {
this.elementName = elementName;
}
public void setElementNamespace(String elementNamespace) {
this.elementNamespace = elementNamespace;
}
public void setNamespaceMap(Map namespaceMap) {
this.namespaceMap = namespaceMap;
}
public void setTargetNamespace(String targetNamespace) {
this.targetNamespace = targetNamespace;
}
}