[125668] changes to support wildcard searches
diff --git a/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/SearchMatch.java b/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/SearchMatch.java
index d2af56f..4890fc5 100644
--- a/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/SearchMatch.java
+++ b/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/SearchMatch.java
@@ -11,9 +11,12 @@
 
 package org.eclipse.wst.common.core.search;
 
+import java.util.HashMap;
+import java.util.Map;
 import org.eclipse.core.resources.IFile;
 import org.eclipse.core.runtime.IAdaptable;
 import org.eclipse.core.runtime.Platform;
+import org.eclipse.wst.common.core.search.pattern.SearchPattern;
 
 /**
  * A search match represents the result of a search query.
@@ -148,5 +151,7 @@
 	{
 		return Platform.getAdapterManager().getAdapter(this, adapter);
 	}
+    
+    public Map map = new HashMap(); 
 
 }
diff --git a/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/document/ComponentDeclarationEntry.java b/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/document/ComponentDeclarationEntry.java
index 5df7e5e..f193937 100644
--- a/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/document/ComponentDeclarationEntry.java
+++ b/plugins/org.eclipse.wst.common.core/src-search/org/eclipse/wst/common/core/search/document/ComponentDeclarationEntry.java
@@ -25,7 +25,8 @@
  */
 public class ComponentDeclarationEntry extends Entry
 {
-	QualifiedName name;
+	QualifiedName metaName;
+    QualifiedName name;
 
 	public QualifiedName getName()
 	{
@@ -36,4 +37,14 @@
 	{
 		this.name = name;
 	}
+
+  public QualifiedName getMetaName()
+  {
+    return metaName;
+  }
+
+  public void setMetaName(QualifiedName metaName)
+  {
+    this.metaName = metaName;
+  }
 }