Javadoc update for [325364]
diff --git a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.java b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.java
index 6f714ba..d8a5ce8 100644
--- a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.java
+++ b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.java
@@ -31,7 +31,6 @@
  * <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>,
  * <code>org.eclipse.jst.ws.annotations.core.annotationCategory</code> and
  * <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension points.
- * for a <code>java.lang.annotation.Annotation</code> class.
  * <p>
  * It supplies the annotation class name, its annotation category, the applicable targets for the annotation
  * and an <code>IAnnotationAttributeInitializer</code> to initialize the annotations element-value pairs.
@@ -83,8 +82,7 @@
 
         this.annotationClassName = AnnotationsManager.getAttributeValue(configurationElement, ATT_CLASS);
         this.name = AnnotationsManager.getAttributeValue(configurationElement, ATT_NAME);
-        this.restictedTo = AnnotationsManager.getAttributeValue(configurationElement,
-                ATT_RESTRICTED_TO);
+        this.restictedTo = AnnotationsManager.getAttributeValue(configurationElement, ATT_RESTRICTED_TO);
         this.classOnly = restictedTo.equals(RESTRICTED_TO_CLASS_ONLY);
         this.interfaceOnly = restictedTo.equals(RESTRICTED_TO_INTERFACE_ONLY);
         this.enumOnly = restictedTo.equals(RESTRICTED_TO_ENUM_ONLY);
@@ -224,7 +222,7 @@
     }
 
     /**
-     * Returns a list of {@link ElementType} that specify the Java elements to which the annotation can be applied.
+     * Returns a list of {@link java.lang.annotation.ElementType} that specify the Java elements to which the annotation can be applied.
      * <p>
      * The element types are retrieved from the annotations
      * {@link java.lang.annotation.Target} meta-annotation type. This list can
@@ -326,11 +324,10 @@
     }
 
     /**
-     * Sets the <code>org.eclipse.jdt.core.IJavaProject</code> which is used to find the
-     * annotation type.
+     * Sets the <code>org.eclipse.jdt.core.IJavaProject</code> which is used to find the annotation type.
      * 
-     * @see {@link #getAnnotationType()}
-     * @see {@link #getAnnotationTypeTargets()}
+     * @see #getAnnotationType()
+     * @see #getAnnotationTypeTargets()
      * @since 1.1
      */
     public void setJavaProject(IJavaProject javaProject) {
diff --git a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsCore.java b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsCore.java
index 26fcaad..d9e691a 100644
--- a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsCore.java
+++ b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsCore.java
@@ -275,7 +275,7 @@
      *
      * @param ast the {@link AST} that will be used to create the qualified name.
      * @param className the fully qualified name of the enclosing class.
-     * @param value a {@link org.eclipse.jdt.core.IField} where <code>isEnumConstant()</code> is <code>true</code>.
+     * @param enumConstant a {@link org.eclipse.jdt.core.IField} where <code>isEnumConstant()</code> is <code>true</code>.
      * @return a new qualified name.
      * @throws JavaModelException
      * @since 1.1
diff --git a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsManager.java b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsManager.java
index da1eda5..db2d3cc 100644
--- a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsManager.java
+++ b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/AnnotationsManager.java
@@ -101,7 +101,7 @@
     /**
      * Returns a list of all the contributed annotations that target the given {@link org.eclipse.jdt.core.IJavaElement}.
      *
-     * @param element one of
+     * @param javaElement one of
      * <li>org.eclipse.jdt.core.IPackageDeclaration</li>
      * <li>org.eclipse.jdt.core.IType</li>
      * <li>org.eclipse.jdt.core.IField</li>
@@ -134,7 +134,7 @@
     /**
      * Returns a list of all the contributed {@link java.lang.annotation.Annotation} that target the given java element type.
      *
-     * @param element one of
+     * @param javaElement one of
      * <li>org.eclipse.jdt.core.IPackageDeclaration</li>
      * <li>org.eclipse.jdt.core.IType</li>
      * <li>org.eclipse.jdt.core.IField</li>
@@ -142,7 +142,7 @@
      * <li>org.eclipse.jdt.core.ILocalVariable</li>
      *
      * @return a list of annotations.
-     * @deprecated As of 1.1 replaced by {@link #getAnnotationTypes(IJavaElement)}}
+     * @deprecated As of 1.1 replaced by {@link #getAnnotationTypes(IJavaElement)}
      */
     @Deprecated
     public static List<Class<? extends Annotation>> getAnnotations(IJavaElement javaElement) {
@@ -239,7 +239,7 @@
     /**
      * Returns the {@link IAnnotationAttributeInitializer} for the given {@link org.eclipse.jdt.core.dom.Name}
      * or null if none can be found.
-     * @param name a {@link SimpleName} or {@link QualifiedName} for the annotation to search for.
+     * @param name a {@link org.eclipse.jdt.core.dom.SimpleName} or {@link org.eclipse.jdt.core.dom.QualifiedName} for the annotation to search for.
      * @return an <code>IAnnotationAttributeInitializer</code> for the given name.
      */
     public static IAnnotationAttributeInitializer getAnnotationAttributeInitializerForName(Name name) {
diff --git a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.java b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.java
index a34e14f..0bc843e 100644
--- a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.java
+++ b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.java
@@ -41,65 +41,65 @@
  */
 public abstract class AnnotationAttributeInitializer implements IAnnotationAttributeInitializer {
 
-	protected static final String MISSING_IDENTIFER = "$missing$";
+    protected static final String MISSING_IDENTIFER = "$missing$";
 
-	protected AnnotationAttributeInitializer() {
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)
-	 */
-	@Deprecated
-	public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast,  Class<? extends Annotation> annotationClass) {
-		return Collections.emptyList();
-	}
-
-	/**
-	 * @see org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)
-	 * @since 1.1
-	 */
-	public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast, IType type) {
-	    return Collections.emptyList();
+    protected AnnotationAttributeInitializer() {
     }
 
-	/* (non-Javadoc)
-	 * @see org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)
-	 */
-	public List<ICompletionProposal> getCompletionProposalsForMemberValuePair(IJavaElement javaElement,
-			MemberValuePair memberValuePair) {
-		return Collections.emptyList();
-	}
 
-	/* (non-Javadoc)
-	 * @see org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)
-	 */
-	public List<ICompletionProposal> getCompletionProposalsForSingleMemberAnnotation(IJavaElement javaElement,
-			SingleMemberAnnotation singleMemberAnnotation) {
-		return Collections.emptyList();
-	}
+    /**
+     * @deprecated as of 1.1 replaced by {@link #getMemberValuePairs(IJavaElement, AST, IType)}
+     */
+    @Deprecated
+    public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast,  Class<? extends Annotation> annotationClass) {
+        return Collections.emptyList();
+    }
 
-	protected CompletionProposal createCompletionProposal(String proposal, Expression value) {
-		Image image = PlatformUI.getWorkbench().getSharedImages().getImage(org.eclipse.ui.ISharedImages.IMG_OBJ_FILE);
-		return createCompletionProposal(proposal, value, image, proposal);
-	}
+    /**
+     * @since 1.1
+     */
+    public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast, IType type) {
+        return Collections.emptyList();
+    }
 
-	protected CompletionProposal createCompletionProposal(String proposal, Expression value, Image image, String displayString) {
-		int replacementOffset = value.getStartPosition();
-		int replacementLength = 0;
-		if (value.toString().equals(MISSING_IDENTIFER)) {
-			if (proposal.charAt(0) != '\"') {
-				proposal = "\"" + proposal;
-			}
-			if (proposal.charAt(proposal.length() - 1) != '\"') {
-				proposal = proposal + "\"";
-			}
-		} else {
-			replacementOffset += 1;
-			replacementLength = value.getLength() - 2;
-		}
+    /* (non-Javadoc)
+     * @see org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)
+     */
+    public List<ICompletionProposal> getCompletionProposalsForMemberValuePair(IJavaElement javaElement,
+            MemberValuePair memberValuePair) {
+        return Collections.emptyList();
+    }
 
-		return new CompletionProposal(proposal, replacementOffset, replacementLength, proposal.length(),
-				image, displayString, null, null);
-	}
+    /* (non-Javadoc)
+     * @see org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)
+     */
+    public List<ICompletionProposal> getCompletionProposalsForSingleMemberAnnotation(IJavaElement javaElement,
+            SingleMemberAnnotation singleMemberAnnotation) {
+        return Collections.emptyList();
+    }
+
+    protected CompletionProposal createCompletionProposal(String proposal, Expression value) {
+        Image image = PlatformUI.getWorkbench().getSharedImages().getImage(org.eclipse.ui.ISharedImages.IMG_OBJ_FILE);
+        return createCompletionProposal(proposal, value, image, proposal);
+    }
+
+    protected CompletionProposal createCompletionProposal(String proposal, Expression value, Image image, String displayString) {
+        int replacementOffset = value.getStartPosition();
+        int replacementLength = 0;
+        if (value.toString().equals(MISSING_IDENTIFER)) {
+            if (proposal.charAt(0) != '\"') {
+                proposal = "\"" + proposal;
+            }
+            if (proposal.charAt(proposal.length() - 1) != '\"') {
+                proposal = proposal + "\"";
+            }
+        } else {
+            replacementOffset += 1;
+            replacementLength = value.getLength() - 2;
+        }
+
+        return new CompletionProposal(proposal, replacementOffset, replacementLength, proposal.length(),
+                image, displayString, null, null);
+    }
 
 }
diff --git a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.java b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.java
index 32dd540..0756bb4 100644
--- a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.java
+++ b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.java
@@ -29,7 +29,7 @@
 import org.eclipse.jst.ws.internal.annotations.core.utils.SignatureUtils;
 
 /**
- * Constructs {@link MemberValuePair} from the defaults found in the given {@link java.lang.annotation.Annotation}.
+ * Constructs a list of {@link MemberValuePair} using the annotation elements default values.
  * <p>
  * <strong>Provisional API:</strong> This class/interface is part of an interim API that is still under
  * development and expected to change significantly before reaching stability. It is being made available at
@@ -45,7 +45,7 @@
     /**
      * Constructs a list of {@link MemberValuePair} using the declared method names and default values in
      * the given {@link java.lang.annotation.Annotation}.
-     *  @see org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)
+     * @deprecated as of 1.1 replaced by {@link #getMemberValuePairs(IJavaElement, AST, IType)}
      */
     @Override
     @Deprecated
@@ -53,6 +53,9 @@
         return getMemberValuePairs(ast, annotationClass);
     }
 
+    /**
+     * Constructs a list of {@link MemberValuePair} from the annotation type element names and default values.
+     */
     @Override
     public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast, IType type) {
         return interalGetMemberValuePairs(javaElement, ast, type);
diff --git a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.java b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.java
index 9878c02..23b3cb6 100644
--- a/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.java
+++ b/bundles/org.eclipse.jst.ws.annotations.core/src/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.java
@@ -33,20 +33,20 @@
 public interface IAnnotationAttributeInitializer {
 
     /**
-     * Returns a list of {@link MemberValuePair} that may be added to a {@link NormalAnnotation}.
+     * Returns a list of {@link MemberValuePair} that may be added to a {@link org.eclipse.jdt.core.dom.NormalAnnotation}.
      * @param javaElement the java element on which the annotation is declared.
      * @param ast the <code>AST</code> with which to create the member value pairs.
      * @param annotationClass the {@link java.lang.annotation.Annotation} class which may be
      * used to query the declared members of the annotation type and the members default values.
      * @return a list of member value pairs.
-     * @deprecated as of 1.1 replaced by {@link IAnnotationAttributeInitializer2#getMemberValuePairs(IJavaElement, AST, IType)}
+     * @deprecated as of 1.1 replaced by {@link #getMemberValuePairs(IJavaElement, AST, IType)}
      */
     @Deprecated
     public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast,
             Class<? extends java.lang.annotation.Annotation> annotationClass);
 
     /**
-     * Returns a list of {@link MemberValuePair} that may be added to a {@link NormalAnnotation}.
+     * Returns a list of {@link MemberValuePair} that may be added to a {@link org.eclipse.jdt.core.dom.NormalAnnotation}.
      * @param javaElement the java element on which the annotation is declared.
      * @param ast the <code>AST</code> with which to create the member value pairs.
      * @param type the {@link org.eclipse.jdt.core.IType} which represents an annotation type,.
diff --git a/bundles/org.eclipse.jst.ws.jaxb.core/META-INF/MANIFEST.MF b/bundles/org.eclipse.jst.ws.jaxb.core/META-INF/MANIFEST.MF
index ca75b58..4acabdc 100644
--- a/bundles/org.eclipse.jst.ws.jaxb.core/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.jst.ws.jaxb.core/META-INF/MANIFEST.MF
@@ -3,7 +3,7 @@
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jst.ws.jaxb.core;singleton:=true
 Bundle-Vendor: %pluginProvider
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.0.100.qualifier
 Bundle-ClassPath: .
 Bundle-Localization: plugin
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/bundles/org.eclipse.jst.ws.jaxws.core/src/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.java b/bundles/org.eclipse.jst.ws.jaxws.core/src/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.java
index ba49a1a..7a2d38f 100644
--- a/bundles/org.eclipse.jst.ws.jaxws.core/src/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.java
+++ b/bundles/org.eclipse.jst.ws.jaxws.core/src/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.java
@@ -175,7 +175,7 @@
     /**
      * Returns the WSDL folder of the given project. The WSDL folder path is the projects web content folder
      * path appended with the 'WSDL' directory. The returned resource may not exist.
-     * @param projectName the name of the web project
+     * @param project the web project
      * @return the wsdl folder
      */
     public static IFolder getWSDLFolder(IProject project) {
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/META-INF/MANIFEST.MF b/docs/org.eclipse.jst.ws.jaxws.doc.isv/META-INF/MANIFEST.MF
index fb0dcae..32b74c6 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/META-INF/MANIFEST.MF
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/META-INF/MANIFEST.MF
@@ -3,5 +3,5 @@
 Bundle-Localization: plugin
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jst.ws.jaxws.doc.isv;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.0.100.qualifier
 Bundle-Vendor: %pluginProvider
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-frame.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-frame.html
index c3046d4..2a9131b 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-frame.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-frame.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 All Classes
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
@@ -29,8 +29,6 @@
 <BR>
 <A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core" target="classFrame">AnnotationsCore</A>
 <BR>
-<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core" target="classFrame">AnnotationsCorePlugin</A>
-<BR>
 <A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core" target="classFrame">AnnotationsManager</A>
 <BR>
 <A HREF="org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils" target="classFrame">AnnotationUtils</A>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-noframe.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-noframe.html
index 05f7ea2..9f52034 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-noframe.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/allclasses-noframe.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 All Classes
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
@@ -29,8 +29,6 @@
 <BR>
 <A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCore</A>
 <BR>
-<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<BR>
 <A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
 <BR>
 <A HREF="org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/constant-values.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/constant-values.html
index 5f2b26f..7d653c2 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/constant-values.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/constant-values.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Constant Field Values
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
@@ -100,42 +100,6 @@
 
 <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
 <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.jst.ws.annotations.core.AnnotationsCorePlugin.PLUGIN_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#PLUGIN_ID">PLUGIN_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.jst.ws.annotations.core"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.jst.ws.annotations.core.initialization.<A HREF="org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer.MISSING_IDENTIFER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>protected&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#MISSING_IDENTIFER">MISSING_IDENTIFER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"$missing$"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
 <TH ALIGN="left" COLSPAN="3">org.eclipse.jst.ws.jaxws.core.utils.<A HREF="org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/deprecated-list.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/deprecated-list.html
index 13cbd70..37e1702 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/deprecated-list.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/deprecated-list.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Deprecated List
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
@@ -85,8 +85,48 @@
 </CENTER>
 <HR SIZE="4" NOSHADE>
 <B>Contents</B><UL>
+<LI><A HREF="#method">Deprecated Methods</A>
 </UL>
 
+<A NAME="method"><!-- --></A>
+<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
+<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
+<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
+<B>Deprecated Methods</B></FONT></TH>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD><A HREF="org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationClass()">org.eclipse.jst.ws.annotations.core.AnnotationDefinition.getAnnotationClass()</A>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 1.1 replaced by <A HREF="org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationType()"><CODE>AnnotationDefinition.getAnnotationType()</CODE></A></I>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD><A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotations(org.eclipse.jdt.core.IJavaElement)">org.eclipse.jst.ws.annotations.core.AnnotationsManager.getAnnotations(IJavaElement)</A>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 1.1 replaced by <A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationTypes(org.eclipse.jdt.core.IJavaElement)"><CODE>AnnotationsManager.getAnnotationTypes(IJavaElement)</CODE></A></I>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD><A HREF="org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)">org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, Class<? extends Annotation>)</A>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 1.1 replaced by <A HREF="org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>IAnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD><A HREF="org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)">org.eclipse.jst.ws.annotations.core.initialization.DefaultsAnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, Class<? extends Annotation>)</A>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 1.1 replaced by <A HREF="org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>DefaultsAnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD><A HREF="org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)">org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, Class<? extends Annotation>)</A>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 1.1 replaced by <A HREF="org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>AnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD><A HREF="org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getTargets()">org.eclipse.jst.ws.annotations.core.AnnotationDefinition.getTargets()</A>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 1.1 replaced by <A HREF="org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationTypeTargets()"><CODE>AnnotationDefinition.getAnnotationTypeTargets()</CODE></A></I>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<P>
 <HR>
 
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/help-doc.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/help-doc.html
index e7475dd..9749939 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/help-doc.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/help-doc.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 API Help
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-1.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-1.html
index 0bf6b0e..9fd3c74 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-1.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-1.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 A-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -78,15 +78,12 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 <A NAME="_A_"><!-- --></A><H2>
 <B>A</B></H2>
 <DL>
 <DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor"><B>AbstractAnnotationProcessor</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/processor/package-summary.html">org.eclipse.jst.ws.annotations.core.processor</A><DD>Abstract base class for processors contributed to the
- <code>org.eclipse.jst.ws.annotations.core.annotationProcessor</code> extension point.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#AbstractAnnotationProcessor()"><B>AbstractAnnotationProcessor()</B></A> - 
-Constructor for class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#addAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.Annotation)"><B>addAnnotation(IJavaElement, Annotation)</B></A> - 
+ <code>org.eclipse.jst.ws.annotations.core.annotationProcessor</code> extension point.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#addAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.Annotation)"><B>addAnnotation(IJavaElement, Annotation)</B></A> - 
 Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
 <DD>Adds the given <CODE>Annotation</CODE> to the <CODE>IJavaElement</CODE>.
 <DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#addImport(org.eclipse.jdt.core.IJavaElement, java.lang.String)"><B>addImport(IJavaElement, String)</B></A> - 
@@ -99,22 +96,14 @@
 Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
 <DD>Add a <code>IClasspathEntry</code> to a <code>IJavaProject</code>
 <DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization"><B>AnnotationAttributeInitializer</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/package-summary.html">org.eclipse.jst.ws.annotations.core.initialization</A><DD>Abstract base class for initializers contributed to the
- <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension point.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#AnnotationAttributeInitializer()"><B>AnnotationAttributeInitializer()</B></A> - 
-Constructor for class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationDefinition</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A><DD>An <code>AnnotationDefinition</code> is a representation of the information contributed through the
+ <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension point.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationDefinition</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A><DD>An <code>AnnotationDefinition</code> is a representation of the information contributed through the
  <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>,
  <code>org.eclipse.jst.ws.annotations.core.annotationCategory</code> and
  <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension points.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#AnnotationDefinition(org.eclipse.core.runtime.IConfigurationElement, java.lang.String)"><B>AnnotationDefinition(IConfigurationElement, String)</B></A> - 
 Constructor for class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
 <DD>Constructs an <code>AnnotationDefinition</code> using information from the
  <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code> extension point and category name.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCore</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A><DD>Utility class for creating annotations and member value pairs.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCorePlugin</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A><DD>
- <strong>Provisional API:</strong> This class/interface is part of an interim API that is still under 
- development and expected to change significantly before reaching stability.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#AnnotationsCorePlugin()"><B>AnnotationsCorePlugin()</B></A> - 
-Constructor for class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsManager</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A><DD>Manages the annotation categories, definitions, processors and initializers contributed through the
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCore</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A><DD>Utility class for creating annotations and member value pairs.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsManager</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A><DD>Manages the annotation categories, definitions, processors and initializers contributed through the
  <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>,
  <code>org.eclipse.jst.ws.annotations.core.annotationCategory</code>,
  <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> and
@@ -172,7 +161,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-10.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-10.html
index 6f17db3..929e611 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-10.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-10.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-M-Index
+R-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="M-Index";
+        parent.document.title="R-Index";
     }
 }
 </SCRIPT>
@@ -78,13 +78,26 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_M_"><!-- --></A><H2>
-<B>M</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_R_"><!-- --></A><H2>
+<B>R</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#MISSING_IDENTIFER"><B>MISSING_IDENTIFER</B></A> - 
-Static variable in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
-<DD>&nbsp;
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#readWSDL(java.net.URL)"><B>readWSDL(URL)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Returns a <code>javax.wsdl.Definition</code> by reading the WSDL document at the given URL or null if none can be found
+ or if the connection times out.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#removeAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.Annotation)"><B>removeAnnotation(IJavaElement, Annotation)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Removes the given <CODE>Annotation</CODE> from the <CODE>IJavaElement</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#removeFromClasspath(org.eclipse.jdt.core.IJavaProject, org.eclipse.jdt.core.IClasspathEntry)"><B>removeFromClasspath(IJavaProject, IClasspathEntry)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Remove a <code>IClasspathEntry</code> from a <code>IJavaProject</code>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#removeImport(org.eclipse.jdt.core.IJavaElement, java.lang.String)"><B>removeImport(IJavaElement, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Removes an import from the compilation unit of the given <CODE>IJavaElement</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#removeMemberValuePair(org.eclipse.jdt.core.dom.NormalAnnotation, org.eclipse.jdt.core.dom.MemberValuePair)"><B>removeMemberValuePair(NormalAnnotation, MemberValuePair)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Removes the <CODE>MemberValuePair</CODE> from the <CODE>NormalAnnotation</CODE>.
 </DL>
 <HR>
 
@@ -139,7 +152,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-11.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-11.html
index ce906c4..ddc3611 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-11.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-11.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-O-Index
+S-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="O-Index";
+        parent.document.title="S-Index";
     }
 }
 </SCRIPT>
@@ -78,11 +78,17 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_O_"><!-- --></A><H2>
-<B>O</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_S_"><!-- --></A><H2>
+<B>S</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/package-summary.html"><B>org.eclipse.jst.ws.annotations.core</B></A> - package org.eclipse.jst.ws.annotations.core<DD>&nbsp;<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/package-summary.html"><B>org.eclipse.jst.ws.annotations.core.initialization</B></A> - package org.eclipse.jst.ws.annotations.core.initialization<DD>&nbsp;<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/package-summary.html"><B>org.eclipse.jst.ws.annotations.core.processor</B></A> - package org.eclipse.jst.ws.annotations.core.processor<DD>&nbsp;<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/package-summary.html"><B>org.eclipse.jst.ws.annotations.core.utils</B></A> - package org.eclipse.jst.ws.annotations.core.utils<DD>&nbsp;<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/package-summary.html"><B>org.eclipse.jst.ws.jaxws.core.utils</B></A> - package org.eclipse.jst.ws.jaxws.core.utils<DD>&nbsp;</DL>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#setAnnotationProcessorEnvironment(com.sun.mirror.apt.AnnotationProcessorEnvironment)"><B>setAnnotationProcessorEnvironment(AnnotationProcessorEnvironment)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
+<DD>Set the <CODE>AnnotationProcessorEnvironment</CODE> environment to use during processing.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#setJavaProject(org.eclipse.jdt.core.IJavaProject)"><B>setJavaProject(IJavaProject)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD>Sets the <code>org.eclipse.jdt.core.IJavaProject</code> which is used to find the annotation type.
+</DL>
 <HR>
 
 
@@ -136,7 +142,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-12.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-12.html
index 0bb7f41..3abb8ac 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-12.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-12.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-P-Index
+U-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="P-Index";
+        parent.document.title="U-Index";
     }
 }
 </SCRIPT>
@@ -78,55 +78,16 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_P_"><!-- --></A><H2>
-<B>P</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_U_"><!-- --></A><H2>
+<B>U</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#PLUGIN_ID"><B>PLUGIN_ID</B></A> - 
-Static variable in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printError(com.sun.mirror.util.SourcePosition, java.lang.String)"><B>printError(SourcePosition, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Prints an error message.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printError(java.lang.String)"><B>printError(String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Prints an error message.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableError(com.sun.mirror.util.SourcePosition, java.lang.String)"><B>printFixableError(SourcePosition, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Print an error including the given arguments for use in quick-fixes.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableError(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)"><B>printFixableError(SourcePosition, String, String, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Print an error including the given arguments for use in quick-fixes.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableError(java.lang.String, java.lang.String, java.lang.String)"><B>printFixableError(String, String, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Print an error including the given arguments for use in quick-fixes.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableNotice(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)"><B>printFixableNotice(SourcePosition, String, String, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Print a notice including the given arguments for use in quick-fixes.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableNotice(java.lang.String, java.lang.String, java.lang.String)"><B>printFixableNotice(String, String, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Print a notice including the given arguments for use in quick-fixes.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableWarning(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)"><B>printFixableWarning(SourcePosition, String, String, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Print a warning including the given arguments for use in quick-fixes.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableWarning(java.lang.String, java.lang.String, java.lang.String)"><B>printFixableWarning(String, String, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Print a warning including the given arguments for use in quick-fixes.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printNotice(com.sun.mirror.util.SourcePosition, java.lang.String)"><B>printNotice(SourcePosition, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Prints a notice.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printNotice(java.lang.String)"><B>printNotice(String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Prints a notice.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printWarning(com.sun.mirror.util.SourcePosition, java.lang.String)"><B>printWarning(SourcePosition, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Prints a warning message.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printWarning(java.lang.String)"><B>printWarning(String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Prints a warning message.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#process()"><B>process()</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Process all program elements supported by this annotation processor.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#updateMemberValuePair(org.eclipse.jdt.core.dom.MemberValuePair, org.eclipse.jdt.core.dom.ASTNode)"><B>updateMemberValuePair(MemberValuePair, ASTNode)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Updates the <CODE>MemberValuePair</CODE> value with the given <CODE>ASTNode</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#updateSingleMemberAnnotation(org.eclipse.jdt.core.dom.SingleMemberAnnotation, org.eclipse.jdt.core.dom.ASTNode)"><B>updateSingleMemberAnnotation(SingleMemberAnnotation, ASTNode)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Updates the value of the <CODE>SingleMemberAnnotation</CODE> with the given <CODE>ASTNode</CODE>.
 </DL>
 <HR>
 
@@ -181,7 +142,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-13.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-13.html
index 69218b1..9719cee 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-13.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-13.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-R-Index
+V-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="R-Index";
+        parent.document.title="V-Index";
     }
 }
 </SCRIPT>
@@ -78,26 +78,22 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_R_"><!-- --></A><H2>
-<B>R</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_V_"><!-- --></A><H2>
+<B>V</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#readWSDL(java.net.URL)"><B>readWSDL(URL)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Returns a <code>javax.wsdl.Definition</code> by reading the WSDL document at the given URL or null if none can be found
- or if the connection times out.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#removeAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.Annotation)"><B>removeAnnotation(IJavaElement, Annotation)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Removes the given <CODE>Annotation</CODE> from the <CODE>IJavaElement</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#removeFromClasspath(org.eclipse.jdt.core.IJavaProject, org.eclipse.jdt.core.IClasspathEntry)"><B>removeFromClasspath(IJavaProject, IClasspathEntry)</B></A> - 
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validateIdentifier(java.lang.String)"><B>validateIdentifier(String)</B></A> - 
 Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Remove a <code>IClasspathEntry</code> from a <code>IJavaProject</code>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#removeImport(org.eclipse.jdt.core.IJavaElement, java.lang.String)"><B>removeImport(IJavaElement, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Removes an import from the compilation unit of the given <CODE>IJavaElement</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#removeMemberValuePair(org.eclipse.jdt.core.dom.NormalAnnotation, org.eclipse.jdt.core.dom.MemberValuePair)"><B>removeMemberValuePair(NormalAnnotation, MemberValuePair)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Removes the <CODE>MemberValuePair</CODE> from the <CODE>NormalAnnotation</CODE>.
+<DD>Validates the given Java identifier with the workspace source and compliance levels.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validateJavaTypeName(java.lang.String)"><B>validateJavaTypeName(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Validates the given Java type name, either simple or qualified, using the workspace source and compliance levels.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validateJavaTypeName(java.lang.String, java.lang.String)"><B>validateJavaTypeName(String, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Validates the given Java type name, either simple or qualified, using the given projects source and compliance levels.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validatePackageName(java.lang.String, java.lang.String)"><B>validatePackageName(String, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Validate the given package name using the given projects source and compliance levels.
 </DL>
 <HR>
 
@@ -152,7 +148,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-14.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-14.html
index 084f14e..5a063db 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-14.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-14.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-S-Index
+W-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="S-Index";
+        parent.document.title="W-Index";
     }
 }
 </SCRIPT>
@@ -56,7 +56,7 @@
 <TR>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
 &nbsp;<A HREF="index-13.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD>
+&nbsp;NEXT LETTER</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
   <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="index-14.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
@@ -78,20 +78,17 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_S_"><!-- --></A><H2>
-<B>S</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_W_"><!-- --></A><H2>
+<B>W</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#setAnnotationProcessorEnvironment(com.sun.mirror.apt.AnnotationProcessorEnvironment)"><B>setAnnotationProcessorEnvironment(AnnotationProcessorEnvironment)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>Set the <CODE>AnnotationProcessorEnvironment</CODE> environment to use during processing.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#start(org.osgi.framework.BundleContext)"><B>start(BundleContext)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#writeWSDL(java.net.URL, javax.wsdl.Definition)"><B>writeWSDL(URL, Definition)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Writes the given <code>javax.wsdl.Definition</code> to the wsdl document at the given URL.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#WSDL_FILE_EXTENSION"><B>WSDL_FILE_EXTENSION</B></A> - 
+Static variable in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
 <DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#stop(org.osgi.framework.BundleContext)"><B>stop(BundleContext)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<DD>&nbsp;
-</DL>
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>WSDLUtils</B></A> - Class in <A HREF="../org/eclipse/jst/ws/jaxws/core/utils/package-summary.html">org.eclipse.jst.ws.jaxws.core.utils</A><DD>WSDL Utility class.</DL>
 <HR>
 
 
@@ -123,7 +120,7 @@
 <TR>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
 &nbsp;<A HREF="index-13.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD>
+&nbsp;NEXT LETTER</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
   <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="index-14.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
@@ -145,7 +142,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-15.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-15.html
deleted file mode 100644
index 1128c2f..0000000
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-15.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
-<TITLE>
-U-Index
-</TITLE>
-
-<META NAME="date" CONTENT="2010-04-07">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="U-Index";
-    }
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="index-14.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-16.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../index.html?index-filesindex-15.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="index-15.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_U_"><!-- --></A><H2>
-<B>U</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#updateMemberValuePair(org.eclipse.jdt.core.dom.MemberValuePair, org.eclipse.jdt.core.dom.ASTNode)"><B>updateMemberValuePair(MemberValuePair, ASTNode)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Updates the <CODE>MemberValuePair</CODE> value with the given <CODE>ASTNode</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#updateSingleMemberAnnotation(org.eclipse.jdt.core.dom.SingleMemberAnnotation, org.eclipse.jdt.core.dom.ASTNode)"><B>updateSingleMemberAnnotation(SingleMemberAnnotation, ASTNode)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Updates the value of the <CODE>SingleMemberAnnotation</CODE> with the given <CODE>ASTNode</CODE>.
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_bottom_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="index-14.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-16.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../index.html?index-filesindex-15.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="index-15.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-16.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-16.html
deleted file mode 100644
index fb77ef5..0000000
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-16.html
+++ /dev/null
@@ -1,154 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
-<TITLE>
-V-Index
-</TITLE>
-
-<META NAME="date" CONTENT="2010-04-07">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="V-Index";
-    }
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="index-15.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-17.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../index.html?index-filesindex-16.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="index-16.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_V_"><!-- --></A><H2>
-<B>V</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validateIdentifier(java.lang.String)"><B>validateIdentifier(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Validates the given Java identifier with the workspace source and compliance levels.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validateJavaTypeName(java.lang.String)"><B>validateJavaTypeName(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Validates the given Java type name, either simple or qualified, using the workspace source and compliance levels.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validateJavaTypeName(java.lang.String, java.lang.String)"><B>validateJavaTypeName(String, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Validates the given Java type name, either simple or qualified, using the given projects source and compliance levels.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#validatePackageName(java.lang.String, java.lang.String)"><B>validatePackageName(String, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Validate the given package name using the given projects source and compliance levels.
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_bottom_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="index-15.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-17.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../index.html?index-filesindex-16.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="index-16.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-17.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-17.html
deleted file mode 100644
index 1a93584..0000000
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-17.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
-<TITLE>
-W-Index
-</TITLE>
-
-<META NAME="date" CONTENT="2010-04-07">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="W-Index";
-    }
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="index-16.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;NEXT LETTER</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../index.html?index-filesindex-17.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="index-17.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_W_"><!-- --></A><H2>
-<B>W</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#writeWSDL(java.net.URL, javax.wsdl.Definition)"><B>writeWSDL(URL, Definition)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Writes the given <code>javax.wsdl.Definition</code> to the wsdl document at the given URL.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#WSDL_FILE_EXTENSION"><B>WSDL_FILE_EXTENSION</B></A> - 
-Static variable in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>WSDLUtils</B></A> - Class in <A HREF="../org/eclipse/jst/ws/jaxws/core/utils/package-summary.html">org.eclipse.jst.ws.jaxws.core.utils</A><DD>WSDL Utility class.</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_bottom_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="index-16.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;NEXT LETTER</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../index.html?index-filesindex-17.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="index-17.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-2.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-2.html
index 14ff512..0bcb7ad 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-2.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-2.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 C-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -78,7 +78,7 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 <A NAME="_C_"><!-- --></A><H2>
 <B>C</B></H2>
 <DL>
@@ -118,15 +118,12 @@
 <DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html#createBooleanMemberValuePair(org.eclipse.jdt.core.dom.AST, java.lang.String, java.lang.Boolean)"><B>createBooleanMemberValuePair(AST, String, Boolean)</B></A> - 
 Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCore</A>
 <DD>Creates a new <CODE>MemberValuePair</CODE> with a <CODE>BooleanLiteral</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression)"><B>createCompletionProposal(String, Expression)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression, org.eclipse.swt.graphics.Image, java.lang.String)"><B>createCompletionProposal(String, Expression, Image, String)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
-<DD>&nbsp;
 <DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html#createEnumLiteral(org.eclipse.jdt.core.dom.AST, java.lang.String, java.lang.Object)"><B>createEnumLiteral(AST, String, Object)</B></A> - 
 Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCore</A>
 <DD>Creates a new <CODE>QualifiedName</CODE> to represent an <code>enum</code> literal value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html#createEnumLiteral(org.eclipse.jdt.core.dom.AST, java.lang.String, org.eclipse.jdt.core.IField)"><B>createEnumLiteral(AST, String, IField)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCore</A>
+<DD>Creates a new <CODE>QualifiedName</CODE> to represent an <code>enum</code> literal value.
 <DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html#createEnumMemberValuePair(org.eclipse.jdt.core.dom.AST, java.lang.String, java.lang.String, java.lang.Object)"><B>createEnumMemberValuePair(AST, String, String, Object)</B></A> - 
 Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCore</A>
 <DD>Creates a new <CODE>MemberValuePair</CODE> with a <CODE>Name</CODE> value.
@@ -235,7 +232,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-3.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-3.html
index 6cba37f..3536ef7 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-3.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-3.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 D-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -78,11 +78,11 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 <A NAME="_D_"><!-- --></A><H2>
 <B>D</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization"><B>DefaultsAnnotationAttributeInitializer</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/package-summary.html">org.eclipse.jst.ws.annotations.core.initialization</A><DD>Constructs <CODE>MemberValuePair</CODE> from the defaults found in the given <CODE>Annotation</CODE>.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#DefaultsAnnotationAttributeInitializer()"><B>DefaultsAnnotationAttributeInitializer()</B></A> - 
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization"><B>DefaultsAnnotationAttributeInitializer</B></A> - Class in <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/package-summary.html">org.eclipse.jst.ws.annotations.core.initialization</A><DD>Constructs a list of <CODE>MemberValuePair</CODE> using the annotation elements default values.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#DefaultsAnnotationAttributeInitializer()"><B>DefaultsAnnotationAttributeInitializer()</B></A> - 
 Constructor for class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">DefaultsAnnotationAttributeInitializer</A>
 <DD>&nbsp;
 </DL>
@@ -139,7 +139,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-4.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-4.html
index e280cd6..70bf6b8 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-4.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-4.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-E-Index
+F-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="E-Index";
+        parent.document.title="F-Index";
     }
 }
 </SCRIPT>
@@ -78,13 +78,17 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_E_"><!-- --></A><H2>
-<B>E</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_F_"><!-- --></A><H2>
+<B>F</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#environment"><B>environment</B></A> - 
-Variable in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
-<DD>&nbsp;
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#findType(org.eclipse.jdt.core.IJavaProject, java.lang.String)"><B>findType(IJavaProject, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns the first type found following the given java project's classpath with the given fully qualified name or null if none is found.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#findType(java.lang.String, java.lang.String)"><B>findType(String, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns the first type found with the given fully qualified name following the classpath of the java project with
+ the give project name or null if none is found.
 </DL>
 <HR>
 
@@ -139,7 +143,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-5.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-5.html
index b894e78..30041a1 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-5.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-5.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-F-Index
+G-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="F-Index";
+        parent.document.title="G-Index";
     }
 }
 </SCRIPT>
@@ -78,17 +78,227 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_F_"><!-- --></A><H2>
-<B>F</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_G_"><!-- --></A><H2>
+<B>G</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#findType(org.eclipse.jdt.core.IJavaProject, java.lang.String)"><B>findType(IJavaProject, String)</B></A> - 
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotation(org.eclipse.jdt.core.IJavaElement, java.lang.Class)"><B>getAnnotation(IJavaElement, Class&lt;? extends Annotation&gt;)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the AST <CODE>Annotation</CODE> that corresponds to the given <CODE>Annotation</CODE> class
+ on the <CODE>IJavaElement</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotation(com.sun.mirror.declaration.Declaration, java.lang.Class)"><B>getAnnotation(Declaration, Class&lt;? extends Annotation&gt;)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>AnnotationMirror</CODE> that corresponds to the given <CODE>Annotation</CODE> class
+ on the <CODE>Declaration</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotation(java.lang.Class, org.eclipse.jdt.core.IAnnotatable)"><B>getAnnotation(Class&lt;? extends Annotation&gt;, IAnnotatable)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the JDT <CODE>IAnnotation</CODE> that corresponds to the given <CODE>Annotation</CODE> class
+ on the <CODE>IAnnotatable</CODE> element.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationAttributeInitializer()"><B>getAnnotationAttributeInitializer()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD>Returns the annotations attribute initializer as specified in the
+ <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension point or null if no
+ initializer can be found.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationAttributeInitializerForName(org.eclipse.jdt.core.dom.Name)"><B>getAnnotationAttributeInitializerForName(Name)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns the <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization"><CODE>IAnnotationAttributeInitializer</CODE></A> for the given <CODE>Name</CODE>
+ or null if none can be found.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationCategories()"><B>getAnnotationCategories()</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns a list of the annotation categories.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationClass()"><B>getAnnotationClass()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD><B>Deprecated.</B>&nbsp;<I>As of 1.1 replaced by <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationType()"><CODE>AnnotationDefinition.getAnnotationType()</CODE></A></I>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationClassName()"><B>getAnnotationClassName()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD>Returns the fully qualified class name of the annotation.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationDefinitionForClass(java.lang.Class)"><B>getAnnotationDefinitionForClass(Class&lt;? extends Annotation&gt;)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns the <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given <CODE>Annotation</CODE> class
+ or null if no annotation definition can be found.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationDefinitionForClass(java.lang.String)"><B>getAnnotationDefinitionForClass(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns the <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given fully qualified <CODE>Annotation</CODE> class
+ name or null if no annotation definition can be found.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationDefinitionForType(org.eclipse.jdt.core.IType)"><B>getAnnotationDefinitionForType(IType)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns the <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given <CODE>IType</CODE>
+ or null if no annotation definition can be found.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationName(org.eclipse.jdt.core.dom.Annotation)"><B>getAnnotationName(Annotation)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the annotations type name.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationProcessorsCache()"><B>getAnnotationProcessorsCache()</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>&nbsp;
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotations()"><B>getAnnotations()</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns a list of <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> constructed from contributions to the
+ <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code> extension point.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotations(org.eclipse.jdt.core.IJavaElement)"><B>getAnnotations(IJavaElement)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD><B>Deprecated.</B>&nbsp;<I>As of 1.1 replaced by <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationTypes(org.eclipse.jdt.core.IJavaElement)"><CODE>AnnotationsManager.getAnnotationTypes(IJavaElement)</CODE></A></I>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotations(org.eclipse.jdt.core.IJavaElement)"><B>getAnnotations(IJavaElement)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns a list of all the <CODE>Annotation</CODE> that are present on the given <CODE>IJavaElement</CODE>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationsByCategory(java.lang.String)"><B>getAnnotationsByCategory(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns a list of all the <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> with the given annotation category name.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationType()"><B>getAnnotationType()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD>Returns the annotation type as specified by the <code>class</code> attribute of the
+ <code>annotation<annotation> element in the <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>
+ extension point.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationTypes(org.eclipse.jdt.core.IJavaElement)"><B>getAnnotationTypes(IJavaElement)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
+<DD>Returns a list of all the contributed annotations that target the given <CODE>IJavaElement</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationTypeTargets()"><B>getAnnotationTypeTargets()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD>Returns a list of <CODE>ElementType</CODE> that specify the Java elements to which the annotation can be applied.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationValue(com.sun.mirror.declaration.AnnotationMirror, java.lang.String)"><B>getAnnotationValue(AnnotationMirror, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>AnnotationValue</CODE> with the given member name that is declared within the <CODE>AnnotationMirror</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationValue(org.eclipse.jdt.core.dom.NormalAnnotation, java.lang.String)"><B>getAnnotationValue(NormalAnnotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>NormalAnnotation</CODE> member value pair value with the given member name.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getAnnotationValue(IAnnotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the JDT <CODE>IAnnotation</CODE> member value pair value with the given member name.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getBooleanValue(com.sun.mirror.declaration.AnnotationMirror, java.lang.String)"><B>getBooleanValue(AnnotationMirror, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the member value with the given member name from the <CODE>AnnotationMirror</CODE> as a <CODE>Boolean</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getBooleanValue(org.eclipse.jdt.core.dom.Annotation, java.lang.String)"><B>getBooleanValue(Annotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the member value with the given member name from the <CODE>Annotation</CODE> as a <CODE>Boolean</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getBooleanValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getBooleanValue(IAnnotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the  member value with the given member name from the <CODE>IAnnotation</CODE> as a <CODE>Boolean</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getCategory()"><B>getCategory()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD>Returns the category the annotation belongs to.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getCompilationUnitFromJavaElement(org.eclipse.jdt.core.IJavaElement)"><B>getCompilationUnitFromJavaElement(IJavaElement)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns a <CODE>ICompilationUnit</CODE> for the given <CODE>IJavaElement</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)"><B>getCompletionProposalsForMemberValuePair(IJavaElement, MemberValuePair)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
+<DD>&nbsp;
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)"><B>getCompletionProposalsForMemberValuePair(IJavaElement, MemberValuePair)</B></A> - 
+Method in interface org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>
+<DD>Used to provide a list of <CODE>ICompletionProposal</CODE> for a <CODE>MemberValuePair</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)"><B>getCompletionProposalsForSingleMemberAnnotation(IJavaElement, SingleMemberAnnotation)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
+<DD>&nbsp;
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)"><B>getCompletionProposalsForSingleMemberAnnotation(IJavaElement, SingleMemberAnnotation)</B></A> - 
+Method in interface org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>
+<DD>Used to provide a list of <CODE>ICompletionProposal</CODE> for a <CODE>SingleMemberAnnotation</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getEndpointAddress(javax.wsdl.Definition)"><B>getEndpointAddress(Definition)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Returns the first <code>SOAPAddress</code> or <code>SOAP12Address</code> found in the given
+ <code>Definition</code> or null if none is found.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getEnumValue(org.eclipse.jdt.core.dom.Annotation, java.lang.String)"><B>getEnumValue(Annotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the member value with the given member name from the <CODE>Annotation</CODE> as a <CODE>String</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getEnumValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getEnumValue(IAnnotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the member value with the given member name from the <CODE>IAnnotation</CODE> as a <CODE>String</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getFieldDeclaration(org.eclipse.jdt.core.IField)"><B>getFieldDeclaration(IField)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>FieldDeclaration</CODE> that corresponds to the given <CODE>IField</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProject(java.lang.String)"><B>getJavaProject(String)</B></A> - 
 Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the first type found following the given java project's classpath with the given fully qualified name or null if none is found.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#findType(java.lang.String, java.lang.String)"><B>findType(String, String)</B></A> - 
+<DD>Returns the Java project corresponding to the given project name.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectOutputDirectoryPath(org.eclipse.jdt.core.IJavaProject)"><B>getJavaProjectOutputDirectoryPath(IJavaProject)</B></A> - 
 Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the first type found with the given fully qualified name following the classpath of the java project with
- the give project name or null if none is found.
+<DD>Returns the absolute path in the local file system of the default output location for the given java project.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectOutputDirectoryPath(java.lang.String)"><B>getJavaProjectOutputDirectoryPath(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns the absolute path in the local file system of the default output location for the given java project name.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectSourceDirectoryPath(org.eclipse.jdt.core.IType)"><B>getJavaProjectSourceDirectoryPath(IType)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns the full, absolute path relative to the workspace of the source folder that contains the given type.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectSourceDirectoryPath(java.lang.String)"><B>getJavaProjectSourceDirectoryPath(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns the full, absolute path relative to the workspace of the first source folder found in the java project with the given name.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectSourceDirectoryPath(org.eclipse.jdt.core.IJavaProject)"><B>getJavaProjectSourceDirectoryPath(IJavaProject)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns the full, absolute path relative to the workspace of the first source folder found in the given java project.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getLocalVariable(org.eclipse.jdt.core.IMethod, int)"><B>getLocalVariable(IMethod, int)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>ILocalVariable</CODE> at the given offset position in the source file.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getLocalVariable(org.eclipse.jdt.core.IMethod, java.lang.String)"><B>getLocalVariable(IMethod, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>ILocalVariable</CODE> with the given name within the declared <CODE>IMethod</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getMemberValuePair(org.eclipse.jdt.core.dom.NormalAnnotation, java.lang.String)"><B>getMemberValuePair(NormalAnnotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>MemberValuePair</CODE> with the given member name from the <CODE>NormalAnnotation</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><B>getMemberValuePairs(IJavaElement, AST, Class&lt;? extends Annotation&gt;)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>AnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><B>getMemberValuePairs(IJavaElement, AST, IType)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
+<DD>&nbsp;
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><B>getMemberValuePairs(IJavaElement, AST, Class&lt;? extends Annotation&gt;)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">DefaultsAnnotationAttributeInitializer</A>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>DefaultsAnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><B>getMemberValuePairs(IJavaElement, AST, IType)</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">DefaultsAnnotationAttributeInitializer</A>
+<DD>Constructs a list of <CODE>MemberValuePair</CODE> from the annotation type element names and default values.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><B>getMemberValuePairs(IJavaElement, AST, Class&lt;? extends Annotation&gt;)</B></A> - 
+Method in interface org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>IAnnotationAttributeInitializer.getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><B>getMemberValuePairs(IJavaElement, AST, IType)</B></A> - 
+Method in interface org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>
+<DD>Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getMethodDeclaration(org.eclipse.jdt.core.IMethod)"><B>getMethodDeclaration(IMethod)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>MethodDeclaration</CODE> that corresponds to the given <CODE>IMethod</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getName()"><B>getName()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD>Returns the annotation name.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getPackageNameFromNamespace(java.lang.String)"><B>getPackageNameFromNamespace(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Constructs a dot separated package name from a given namespace.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getPublicMethods(org.eclipse.jdt.core.IType)"><B>getPublicMethods(IType)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>If the given <code>IType</code> is an interface all methods declared in that interface are returned.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getSingleVariableDeclaration(org.eclipse.jdt.core.ILocalVariable)"><B>getSingleVariableDeclaration(ILocalVariable)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>SingleVariableDeclaration</CODE> that corresponds to the given <CODE>ILocalVariable</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getSingleVariableDeclarations(org.eclipse.jdt.core.IMethod)"><B>getSingleVariableDeclarations(IMethod)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns a list of all the <CODE>SingleVariableDeclaration</CODE> for the given <CODE>IMethod</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getStringValue(com.sun.mirror.declaration.AnnotationMirror, java.lang.String)"><B>getStringValue(AnnotationMirror, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the member value with the given member name from the <CODE>AnnotationMirror</CODE> as a <CODE>String</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getStringValue(org.eclipse.jdt.core.dom.Annotation, java.lang.String)"><B>getStringValue(Annotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the member value with the given member name from the <CODE>Annotation</CODE> as a <CODE>String</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getStringValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getStringValue(IAnnotation, String)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the member value with the given member name from the <CODE>IAnnotation</CODE> as a <CODE>String</CODE> value.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getTargetNamespaceFromPackageName(java.lang.String)"><B>getTargetNamespaceFromPackageName(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Constructs a target namespace string from the given package name by splitting the dot '.' separated
+ package name, reversing the order of the package name segments followed by prefixing the string with
+ 'http://' and appending a forward slash '/' to the end.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getTargets()"><B>getTargets()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationTypeTargets()"><CODE>AnnotationDefinition.getAnnotationTypeTargets()</CODE></A></I>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getTypeDeclaration(org.eclipse.jdt.core.IType)"><B>getTypeDeclaration(IType)</B></A> - 
+Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
+<DD>Returns the <CODE>AbstractTypeDeclaration</CODE> that corresponds to the given <CODE>IType</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWebContentFolder(org.eclipse.core.resources.IProject)"><B>getWebContentFolder(IProject)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Returns the Web Content folder of the given project.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWSDLFolder(java.lang.String)"><B>getWSDLFolder(String)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Returns the WSDL folder of the project with the given name.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWSDLFolder(org.eclipse.core.resources.IProject)"><B>getWSDLFolder(IProject)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Returns the WSDL folder of the given project.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWSDLLocation(javax.wsdl.Definition)"><B>getWSDLLocation(Definition)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
+<DD>Returns the location URI from the first <code>SOAPAddress</code> or <code>SOAP12Address</code> found
+ in the given <code>Definition</code> or null if none is found.
 </DL>
 <HR>
 
@@ -143,7 +353,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-6.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-6.html
index d7c949b..c7ab856 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-6.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-6.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-G-Index
+I-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="G-Index";
+        parent.document.title="I-Index";
     }
 }
 </SCRIPT>
@@ -78,216 +78,35 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_G_"><!-- --></A><H2>
-<B>G</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_I_"><!-- --></A><H2>
+<B>I</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotation(org.eclipse.jdt.core.IJavaElement, java.lang.Class)"><B>getAnnotation(IJavaElement, Class&lt;? extends Annotation&gt;)</B></A> - 
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization"><B>IAnnotationAttributeInitializer</B></A> - Interface in <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/package-summary.html">org.eclipse.jst.ws.annotations.core.initialization</A><DD>Base interface for annotation attribute initializers.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#isAnnotationPresent(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.Annotation)"><B>isAnnotationPresent(IJavaElement, Annotation)</B></A> - 
 Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the AST <CODE>Annotation</CODE> that corresponds to the given <CODE>Annotation</CODE> class
- on the <CODE>IJavaElement</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotation(com.sun.mirror.declaration.Declaration, java.lang.Class)"><B>getAnnotation(Declaration, Class&lt;? extends Annotation&gt;)</B></A> - 
+<DD>Checks if the given <CODE>Annotation</CODE> is present on the <CODE>IJavaElement</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#isAnnotationPresent(org.eclipse.jdt.core.IJavaElement, java.lang.String)"><B>isAnnotationPresent(IJavaElement, String)</B></A> - 
 Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>AnnotationMirror</CODE> that corresponds to the given <CODE>Annotation</CODE> class
- on the <CODE>Declaration</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotation(java.lang.Class, org.eclipse.jdt.core.IAnnotatable)"><B>getAnnotation(Class&lt;? extends Annotation&gt;, IAnnotatable)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the JDT <CODE>IAnnotation</CODE> that corresponds to the given <CODE>Annotation</CODE> class
- on the <CODE>IAnnotatable</CODE> element.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationAttributeInitializer()"><B>getAnnotationAttributeInitializer()</B></A> - 
+<DD>Checks if the annotation with the given name is present on the <CODE>IJavaElement</CODE>.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#isClassOnly()"><B>isClassOnly()</B></A> - 
 Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns the annotations attribute initializer as specified in the
- <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension point or null if no
- initializer can be found.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationAttributeInitializerForName(org.eclipse.jdt.core.dom.Name)"><B>getAnnotationAttributeInitializerForName(Name)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>Returns the <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization"><CODE>IAnnotationAttributeInitializer</CODE></A> for the given <CODE>Name</CODE>
- or null if none can be found.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationCategories()"><B>getAnnotationCategories()</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>Returns a list of the annotation categories.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationClass()"><B>getAnnotationClass()</B></A> - 
+<DD>Returns whether the annotation is restricted to class types.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#isEnumOnly()"><B>isEnumOnly()</B></A> - 
 Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns the annotation class as specified by the <code>class</code> attribute of the
- <code>annotation<annotation> element in the <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>
- extension point.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationClassName()"><B>getAnnotationClassName()</B></A> - 
+<DD>Returns whether the annotation is restricted to enum types.
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#isInterfaceOnly()"><B>isInterfaceOnly()</B></A> - 
 Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns the fully qualified class name of the annotation.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationDefinitionForClass(java.lang.Class)"><B>getAnnotationDefinitionForClass(Class&lt;? extends Annotation&gt;)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>Returns the <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given <CODE>Annotation</CODE> class
- or null if no annotation definition can be found.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationDefinitionForClass(java.lang.String)"><B>getAnnotationDefinitionForClass(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>Returns the <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given fully qualified <CODE>Annotation</CODE> class
- name or null if no annotation definition can be found.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationInitializerCache()"><B>getAnnotationInitializerCache()</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationName(org.eclipse.jdt.core.dom.Annotation)"><B>getAnnotationName(Annotation)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the annotations type name.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationProcessorsCache()"><B>getAnnotationProcessorsCache()</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotations()"><B>getAnnotations()</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>Returns a list of <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> constructed from contributions to the
- <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code> extension point.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotations(org.eclipse.jdt.core.IJavaElement)"><B>getAnnotations(IJavaElement)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>Returns a list of all the contributed <CODE>Annotation</CODE> that target the given java element type.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotations(org.eclipse.jdt.core.IJavaElement)"><B>getAnnotations(IJavaElement)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns a list of all the <CODE>Annotation</CODE> that are present on the given <CODE>IJavaElement</CODE>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationsByCategory(java.lang.String)"><B>getAnnotationsByCategory(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>Returns a list of all the <A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> with the given annotation category name.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationValue(com.sun.mirror.declaration.AnnotationMirror, java.lang.String)"><B>getAnnotationValue(AnnotationMirror, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>AnnotationValue</CODE> with the given member name that is declared within the <CODE>AnnotationMirror</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationValue(org.eclipse.jdt.core.dom.NormalAnnotation, java.lang.String)"><B>getAnnotationValue(NormalAnnotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>NormalAnnotation</CODE> member value pair value with the given member name.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getAnnotationValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getAnnotationValue(IAnnotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the JDT <CODE>IAnnotation</CODE> member value pair value with the given member name.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAttributeValue(org.eclipse.core.runtime.IConfigurationElement, java.lang.String)"><B>getAttributeValue(IConfigurationElement, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getBooleanValue(com.sun.mirror.declaration.AnnotationMirror, java.lang.String)"><B>getBooleanValue(AnnotationMirror, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the member value with the given member name from the <CODE>AnnotationMirror</CODE> as a <CODE>Boolean</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getBooleanValue(org.eclipse.jdt.core.dom.Annotation, java.lang.String)"><B>getBooleanValue(Annotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the member value with the given member name from the <CODE>Annotation</CODE> as a <CODE>Boolean</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getBooleanValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getBooleanValue(IAnnotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the  member value with the given member name from the <CODE>IAnnotation</CODE> as a <CODE>Boolean</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getCategory()"><B>getCategory()</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns the category the annotation belongs to.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getCompilationUnitFromJavaElement(org.eclipse.jdt.core.IJavaElement)"><B>getCompilationUnitFromJavaElement(IJavaElement)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns a <CODE>ICompilationUnit</CODE> for the given <CODE>IJavaElement</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)"><B>getCompletionProposalsForMemberValuePair(IJavaElement, MemberValuePair)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)"><B>getCompletionProposalsForMemberValuePair(IJavaElement, MemberValuePair)</B></A> - 
-Method in interface org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>
-<DD>Used to provide a list of <CODE>ICompletionProposal</CODE> for a <CODE>MemberValuePair</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)"><B>getCompletionProposalsForSingleMemberAnnotation(IJavaElement, SingleMemberAnnotation)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)"><B>getCompletionProposalsForSingleMemberAnnotation(IJavaElement, SingleMemberAnnotation)</B></A> - 
-Method in interface org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>
-<DD>Used to provide a list of <CODE>ICompletionProposal</CODE> for a <CODE>SingleMemberAnnotation</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#getDefault()"><B>getDefault()</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getEndpointAddress(javax.wsdl.Definition)"><B>getEndpointAddress(Definition)</B></A> - 
+<DD>Returns whether the annotation is restricted to interface types.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#isJavaProject(org.eclipse.core.resources.IProject)"><B>isJavaProject(IProject)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns whether the given project has the java nature.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#isPublicMethod(org.eclipse.jdt.core.IMethod)"><B>isPublicMethod(IMethod)</B></A> - 
+Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
+<DD>Returns true if the given method isn't a main method or constructor and if it has the public modifier.
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#isValidWSDLFileName(java.lang.String)"><B>isValidWSDLFileName(String)</B></A> - 
 Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Returns the first <code>SOAPAddress</code> or <code>SOAP12Address</code> found in the given
- <code>Definition</code> or null if none is found.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getEnumValue(org.eclipse.jdt.core.dom.Annotation, java.lang.String)"><B>getEnumValue(Annotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the member value with the given member name from the <CODE>Annotation</CODE> as a <CODE>String</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getEnumValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getEnumValue(IAnnotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the member value with the given member name from the <CODE>IAnnotation</CODE> as a <CODE>String</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getFieldDeclaration(org.eclipse.jdt.core.IField)"><B>getFieldDeclaration(IField)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>FieldDeclaration</CODE> that corresponds to the given <CODE>IField</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProject(java.lang.String)"><B>getJavaProject(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the Java project corresponding to the given project name.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectOutputDirectoryPath(org.eclipse.jdt.core.IJavaProject)"><B>getJavaProjectOutputDirectoryPath(IJavaProject)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the absolute path in the local file system of the default output location for the given java project.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectOutputDirectoryPath(java.lang.String)"><B>getJavaProjectOutputDirectoryPath(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the absolute path in the local file system of the default output location for the given java project name.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectSourceDirectoryPath(org.eclipse.jdt.core.IType)"><B>getJavaProjectSourceDirectoryPath(IType)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the full, absolute path relative to the workspace of the source folder that contains the given type.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectSourceDirectoryPath(java.lang.String)"><B>getJavaProjectSourceDirectoryPath(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the full, absolute path relative to the workspace of the first source folder found in the java project with the given name.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getJavaProjectSourceDirectoryPath(org.eclipse.jdt.core.IJavaProject)"><B>getJavaProjectSourceDirectoryPath(IJavaProject)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns the full, absolute path relative to the workspace of the first source folder found in the given java project.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getLocalVariable(org.eclipse.jdt.core.IMethod, int)"><B>getLocalVariable(IMethod, int)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>ILocalVariable</CODE> at the given offset position in the source file.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getLocalVariable(org.eclipse.jdt.core.IMethod, java.lang.String)"><B>getLocalVariable(IMethod, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>ILocalVariable</CODE> with the given name within the declared <CODE>IMethod</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getMemberValuePair(org.eclipse.jdt.core.dom.NormalAnnotation, java.lang.String)"><B>getMemberValuePair(NormalAnnotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>MemberValuePair</CODE> with the given member name from the <CODE>NormalAnnotation</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><B>getMemberValuePairs(IJavaElement, AST, Class&lt;? extends Annotation&gt;)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><B>getMemberValuePairs(IJavaElement, AST, Class&lt;? extends Annotation&gt;)</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">DefaultsAnnotationAttributeInitializer</A>
-<DD>Constructs a list of <CODE>MemberValuePair</CODE> using the declared method names and default values in
- the given <CODE>Annotation</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><B>getMemberValuePairs(IJavaElement, AST, Class&lt;? extends Annotation&gt;)</B></A> - 
-Method in interface org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>
-<DD>Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getMethodDeclaration(org.eclipse.jdt.core.IMethod)"><B>getMethodDeclaration(IMethod)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>MethodDeclaration</CODE> that corresponds to the given <CODE>IMethod</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getName()"><B>getName()</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns the annotation name.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getPackageNameFromNamespace(java.lang.String)"><B>getPackageNameFromNamespace(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Constructs a dot separated package name from a given namespace.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getPublicMethods(org.eclipse.jdt.core.IType)"><B>getPublicMethods(IType)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>If the given <code>IType</code> is an interface all methods declared in that interface are returned.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getSingleVariableDeclaration(org.eclipse.jdt.core.ILocalVariable)"><B>getSingleVariableDeclaration(ILocalVariable)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>SingleVariableDeclaration</CODE> that corresponds to the given <CODE>ILocalVariable</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getSingleVariableDeclarations(org.eclipse.jdt.core.IMethod)"><B>getSingleVariableDeclarations(IMethod)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns a list of all the <CODE>SingleVariableDeclaration</CODE> for the given <CODE>IMethod</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getStringValue(com.sun.mirror.declaration.AnnotationMirror, java.lang.String)"><B>getStringValue(AnnotationMirror, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the member value with the given member name from the <CODE>AnnotationMirror</CODE> as a <CODE>String</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getStringValue(org.eclipse.jdt.core.dom.Annotation, java.lang.String)"><B>getStringValue(Annotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the member value with the given member name from the <CODE>Annotation</CODE> as a <CODE>String</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getStringValue(org.eclipse.jdt.core.IAnnotation, java.lang.String)"><B>getStringValue(IAnnotation, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the member value with the given member name from the <CODE>IAnnotation</CODE> as a <CODE>String</CODE> value.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#getTargetNamespaceFromPackageName(java.lang.String)"><B>getTargetNamespaceFromPackageName(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Constructs a target namespace string from the given package name by splitting the dot '.' separated
- package name, reversing the order of the package name segments followed by prefixing the string with
- 'http://' and appending a forward slash '/' to the end.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getTargets()"><B>getTargets()</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns a list of <CODE>ElementType</CODE> that specify the Java elements to which the annotation
- can be applied.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#getTypeDeclaration(org.eclipse.jdt.core.IType)"><B>getTypeDeclaration(IType)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Returns the <CODE>AbstractTypeDeclaration</CODE> that corresponds to the given <CODE>IType</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWebContentFolder(org.eclipse.core.resources.IProject)"><B>getWebContentFolder(IProject)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Returns the Web Content folder of the given project.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWSDLFolder(java.lang.String)"><B>getWSDLFolder(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Returns the WSDL folder of the project with the given name.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWSDLFolder(org.eclipse.core.resources.IProject)"><B>getWSDLFolder(IProject)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Returns the WSDL folder of the given project.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#getWSDLLocation(javax.wsdl.Definition)"><B>getWSDLLocation(Definition)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Returns the location URI from the first <code>SOAPAddress</code> or <code>SOAP12Address</code> found
- in the given <code>Definition</code> or null if none is found.
+<DD>Returns <code>true</code> if the given file name contains Alphanumeric characters, underscore '_',
+ dashes '-' and ends with the '.wsdl' extension.
 </DL>
 <HR>
 
@@ -342,7 +161,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-7.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-7.html
index ef943f4..52ed82c 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-7.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-7.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-I-Index
+J-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="I-Index";
+        parent.document.title="J-Index";
     }
 }
 </SCRIPT>
@@ -78,36 +78,11 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_I_"><!-- --></A><H2>
-<B>I</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_J_"><!-- --></A><H2>
+<B>J</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization"><B>IAnnotationAttributeInitializer</B></A> - Interface in <A HREF="../org/eclipse/jst/ws/annotations/core/initialization/package-summary.html">org.eclipse.jst.ws.annotations.core.initialization</A><DD>Base interface for annotation attribute initializers.<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#isAnnotationPresent(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.Annotation)"><B>isAnnotationPresent(IJavaElement, Annotation)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Checks if the given <CODE>Annotation</CODE> is present on the <CODE>IJavaElement</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html#isAnnotationPresent(org.eclipse.jdt.core.IJavaElement, java.lang.String)"><B>isAnnotationPresent(IJavaElement, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.utils.<A HREF="../org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils">AnnotationUtils</A>
-<DD>Checks if the annotation with the given name is present on the <CODE>IJavaElement</CODE>.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#isClassOnly()"><B>isClassOnly()</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns whether the annotation is restricted to class types.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#isEnumOnly()"><B>isEnumOnly()</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns whether the annotation is restricted to enum types.
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#isInterfaceOnly()"><B>isInterfaceOnly()</B></A> - 
-Method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A>
-<DD>Returns whether the annotation is restricted to interface types.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#isJavaProject(org.eclipse.core.resources.IProject)"><B>isJavaProject(IProject)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns whether the given project has the java nature.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html#isPublicMethod(org.eclipse.jdt.core.IMethod)"><B>isPublicMethod(IMethod)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">JDTUtils</A>
-<DD>Returns true if the given method isn't a main method or constructor and if it has the public modifier.
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html#isValidWSDLFileName(java.lang.String)"><B>isValidWSDLFileName(String)</B></A> - 
-Static method in class org.eclipse.jst.ws.jaxws.core.utils.<A HREF="../org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils">WSDLUtils</A>
-<DD>Returns <code>true</code> if the given file name contains Alphanumeric characters, underscore '_',
- dashes '-' and ends with the '.wsdl' extension.
-</DL>
+<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>JDTUtils</B></A> - Class in <A HREF="../org/eclipse/jst/ws/jaxws/core/utils/package-summary.html">org.eclipse.jst.ws.jaxws.core.utils</A><DD>JDT Utility class.</DL>
 <HR>
 
 
@@ -161,7 +136,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-8.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-8.html
index 54b33e9..affcd3d 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-8.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-8.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-J-Index
+O-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="J-Index";
+        parent.document.title="O-Index";
     }
 }
 </SCRIPT>
@@ -78,11 +78,11 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_J_"><!-- --></A><H2>
-<B>J</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_O_"><!-- --></A><H2>
+<B>O</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>JDTUtils</B></A> - Class in <A HREF="../org/eclipse/jst/ws/jaxws/core/utils/package-summary.html">org.eclipse.jst.ws.jaxws.core.utils</A><DD>JDT Utility class.</DL>
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/initialization/package-summary.html"><B>org.eclipse.jst.ws.annotations.core.initialization</B></A> - package org.eclipse.jst.ws.annotations.core.initialization<DD>&nbsp;<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/package-summary.html"><B>org.eclipse.jst.ws.annotations.core.processor</B></A> - package org.eclipse.jst.ws.annotations.core.processor<DD>&nbsp;<DT><A HREF="../org/eclipse/jst/ws/annotations/core/utils/package-summary.html"><B>org.eclipse.jst.ws.annotations.core.utils</B></A> - package org.eclipse.jst.ws.annotations.core.utils<DD>&nbsp;<DT><A HREF="../org/eclipse/jst/ws/jaxws/core/utils/package-summary.html"><B>org.eclipse.jst.ws.jaxws.core.utils</B></A> - package org.eclipse.jst.ws.jaxws.core.utils<DD>&nbsp;</DL>
 <HR>
 
 
@@ -136,7 +136,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-9.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-9.html
index f578c2b..270ca97 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-9.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index-files/index-9.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
-L-Index
+P-Index
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
 
@@ -15,7 +15,7 @@
 function windowTitle()
 {
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="L-Index";
+        parent.document.title="P-Index";
     }
 }
 </SCRIPT>
@@ -78,19 +78,13 @@
 <A NAME="skip-navbar_top"></A>
 <!-- ========= END OF TOP NAVBAR ========= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
-<A NAME="_L_"><!-- --></A><H2>
-<B>L</B></H2>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
+<A NAME="_P_"><!-- --></A><H2>
+<B>P</B></H2>
 <DL>
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#log(org.eclipse.core.runtime.IStatus)"><B>log(IStatus)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#log(java.lang.Throwable)"><B>log(Throwable)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#logMessage(int, java.lang.String)"><B>logMessage(int, String)</B></A> - 
-Static method in class org.eclipse.jst.ws.annotations.core.<A HREF="../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A>
-<DD>&nbsp;
+<DT><A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#process()"><B>process()</B></A> - 
+Method in class org.eclipse.jst.ws.annotations.core.processor.<A HREF="../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html" title="class in org.eclipse.jst.ws.annotations.core.processor">AbstractAnnotationProcessor</A>
+<DD>Process all program elements supported by this annotation processor.
 </DL>
 <HR>
 
@@ -145,7 +139,7 @@
 <A NAME="skip-navbar_bottom"></A>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">E</A> <A HREF="index-5.html">F</A> <A HREF="index-6.html">G</A> <A HREF="index-7.html">I</A> <A HREF="index-8.html">J</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">O</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">U</A> <A HREF="index-16.html">V</A> <A HREF="index-17.html">W</A> <HR>
+<A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">J</A> <A HREF="index-8.html">O</A> <A HREF="index-9.html">P</A> <A HREF="index-10.html">R</A> <A HREF="index-11.html">S</A> <A HREF="index-12.html">U</A> <A HREF="index-13.html">V</A> <A HREF="index-14.html">W</A> <HR>
 
 </BODY>
 </HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index.html
index a13a736..b5795f7 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/index.html
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc on Wed Apr 07 07:46:23 BST 2010-->
+<!-- Generated by javadoc on Sun Apr 03 11:19:14 IST 2011-->
 <TITLE>
 Generated Documentation (Untitled)
 </TITLE>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html
index 47892f8..124f0a8 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:21 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:13 IST 2011 -->
 <TITLE>
 AnnotationDefinition
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -105,7 +105,6 @@
  <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>,
  <code>org.eclipse.jst.ws.annotations.core.annotationCategory</code> and
  <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension points.
- for a <code>java.lang.annotation.Annotation</code> class.
  <p>
  It supplies the annotation class name, its annotation category, the applicable targets for the annotation
  and an <code>IAnnotationAttributeInitializer</code> to initialize the annotations element-value pairs.
@@ -164,9 +163,7 @@
 <TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationClass()">getAnnotationClass</A></B>()</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the annotation class as specified by the <code>class</code> attribute of the
- <code>annotation<annotation> element in the <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>
- extension point.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>As of 1.1 replaced by <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationType()"><CODE>getAnnotationType()</CODE></A></I></TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
@@ -178,6 +175,24 @@
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>&nbsp;org.eclipse.jdt.core.IType</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationType()">getAnnotationType</A></B>()</CODE>
+
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the annotation type as specified by the <code>class</code> attribute of the
+ <code>annotation<annotation> element in the <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>
+ extension point.</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>&nbsp;java.util.List&lt;java.lang.annotation.ElementType&gt;</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationTypeTargets()">getAnnotationTypeTargets</A></B>()</CODE>
+
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of <CODE>ElementType</CODE> that specify the Java elements to which the annotation can be applied.</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
 <CODE>&nbsp;java.lang.String</CODE></FONT></TD>
 <TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getCategory()">getCategory</A></B>()</CODE>
 
@@ -198,8 +213,7 @@
 <TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getTargets()">getTargets</A></B>()</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of <CODE>ElementType</CODE> that specify the Java elements to which the annotation
- can be applied.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationTypeTargets()"><CODE>getAnnotationTypeTargets()</CODE></A></I></TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
@@ -225,6 +239,14 @@
 <BR>
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns whether the annotation is restricted to interface types.</TD>
 </TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>&nbsp;void</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#setJavaProject(org.eclipse.jdt.core.IJavaProject)">setJavaProject</A></B>(org.eclipse.jdt.core.IJavaProject&nbsp;javaProject)</CODE>
+
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the <code>org.eclipse.jdt.core.IJavaProject</code> which is used to find the annotation type.</TD>
+</TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
 <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
@@ -232,7 +254,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -358,15 +380,37 @@
 <A NAME="getAnnotationClass()"><!-- --></A><H3>
 getAnnotationClass</H3>
 <PRE>
-public java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt; <B>getAnnotationClass</B>()</PRE>
+<FONT SIZE="-1">@Deprecated
+</FONT>public java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt; <B>getAnnotationClass</B>()</PRE>
 <DL>
+<DD><B>Deprecated.</B>&nbsp;<I>As of 1.1 replaced by <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationType()"><CODE>getAnnotationType()</CODE></A></I>
+<P>
 <DD>Returns the annotation class as specified by the <code>class</code> attribute of the
  <code>annotation<annotation> element in the <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>
  extension point.
 <P>
 <DD><DL>
 
-<DT><B>Returns:</B><DD>the annotation class</DL>
+<DT><B>Returns:</B><DD>the annotation class or null if not found.</DL>
+</DD>
+</DL>
+<HR>
+
+<A NAME="getAnnotationType()"><!-- --></A><H3>
+getAnnotationType</H3>
+<PRE>
+public org.eclipse.jdt.core.IType <B>getAnnotationType</B>()</PRE>
+<DL>
+<DD>Returns the annotation type as specified by the <code>class</code> attribute of the
+ <code>annotation<annotation> element in the <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>
+ extension point.
+<P>
+<DD><DL>
+
+<DT><B>Returns:</B><DD>the <code>org.eclipse.jdt.core.IType</code> which represents an annotation type or null if the java project
+ has not been set, if the type cannot be found or if the type does not represent an annotation type.<DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+<DT><B>See Also:</B><DD><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#setJavaProject(org.eclipse.jdt.core.IJavaProject)"><CODE>setJavaProject(IJavaProject)</CODE></A></DL>
 </DD>
 </DL>
 <HR>
@@ -374,8 +418,11 @@
 <A NAME="getTargets()"><!-- --></A><H3>
 getTargets</H3>
 <PRE>
-public java.util.List&lt;java.lang.annotation.ElementType&gt; <B>getTargets</B>()</PRE>
+<FONT SIZE="-1">@Deprecated
+</FONT>public java.util.List&lt;java.lang.annotation.ElementType&gt; <B>getTargets</B>()</PRE>
 <DL>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationTypeTargets()"><CODE>getAnnotationTypeTargets()</CODE></A></I>
+<P>
 <DD>Returns a list of <CODE>ElementType</CODE> that specify the Java elements to which the annotation
  can be applied.
  <p>
@@ -393,6 +440,30 @@
 </DL>
 <HR>
 
+<A NAME="getAnnotationTypeTargets()"><!-- --></A><H3>
+getAnnotationTypeTargets</H3>
+<PRE>
+public java.util.List&lt;java.lang.annotation.ElementType&gt; <B>getAnnotationTypeTargets</B>()</PRE>
+<DL>
+<DD>Returns a list of <CODE>ElementType</CODE> that specify the Java elements to which the annotation can be applied.
+ <p>
+ The element types are retrieved from the annotations
+ <CODE>Target</CODE> meta-annotation type. This list can
+ be filtered using the <code>targetFilter</code> element on the
+ <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>
+ extension point when defining the annotation.
+ </p>
+<P>
+<DD><DL>
+
+<DT><B>Returns:</B><DD>a list of element types or null if the java project has not been set or if the annotation type cannot be
+ found.<DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+<DT><B>See Also:</B><DD><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#setJavaProject(org.eclipse.jdt.core.IJavaProject)"><CODE>setJavaProject(IJavaProject)</CODE></A></DL>
+</DD>
+</DL>
+<HR>
+
 <A NAME="getAnnotationAttributeInitializer()"><!-- --></A><H3>
 getAnnotationAttributeInitializer</H3>
 <PRE>
@@ -407,6 +478,22 @@
 <DT><B>Returns:</B><DD>the <code>IAnnotationAttributeInitializer</code></DL>
 </DD>
 </DL>
+<HR>
+
+<A NAME="setJavaProject(org.eclipse.jdt.core.IJavaProject)"><!-- --></A><H3>
+setJavaProject</H3>
+<PRE>
+public void <B>setJavaProject</B>(org.eclipse.jdt.core.IJavaProject&nbsp;javaProject)</PRE>
+<DL>
+<DD>Sets the <code>org.eclipse.jdt.core.IJavaProject</code> which is used to find the annotation type.
+<P>
+<DD><DL>
+<DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+<DT><B>See Also:</B><DD><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationType()"><CODE>getAnnotationType()</CODE></A>, 
+<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html#getAnnotationTypeTargets()"><CODE>getAnnotationTypeTargets()</CODE></A></DL>
+</DD>
+</DL>
 <!-- ========= END OF CLASS DATA ========= -->
 <HR>
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCore.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCore.html
index fb7b6be..d69247b 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCore.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCore.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:21 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:13 IST 2011 -->
 <TITLE>
 AnnotationsCore
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -56,7 +56,7 @@
 <TR>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
 &nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>PREV CLASS</B></A>&nbsp;
-&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><B>NEXT CLASS</B></A></FONT></TD>
+&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>NEXT CLASS</B></A></FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
   <A HREF="../../../../../../index.html?org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationsCore.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
@@ -164,6 +164,16 @@
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
 <CODE>static&nbsp;org.eclipse.jdt.core.dom.QualifiedName</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html#createEnumLiteral(org.eclipse.jdt.core.dom.AST, java.lang.String, org.eclipse.jdt.core.IField)">createEnumLiteral</A></B>(org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                  java.lang.String&nbsp;className,
+                  org.eclipse.jdt.core.IField&nbsp;enumConstant)</CODE>
+
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a new <CODE>QualifiedName</CODE> to represent an <code>enum</code> literal value.</TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>static&nbsp;org.eclipse.jdt.core.dom.QualifiedName</CODE></FONT></TD>
 <TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html#createEnumLiteral(org.eclipse.jdt.core.dom.AST, java.lang.String, java.lang.Object)">createEnumLiteral</A></B>(org.eclipse.jdt.core.dom.AST&nbsp;ast,
                   java.lang.String&nbsp;className,
                   java.lang.Object&nbsp;value)</CODE>
@@ -303,7 +313,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -504,12 +514,32 @@
 <DD>Creates a new <CODE>QualifiedName</CODE> to represent an <code>enum</code> literal value.
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>ast</CODE> - the <CODE>AST</CODE> that will be used to create the qualified name.<DD><CODE>className</CODE> - the fully qualified name of the enclosing class.<DD><CODE>value</CODE> - sn object representing the <code>enum</code> value.
+<DT><B>Parameters:</B><DD><CODE>ast</CODE> - the <CODE>AST</CODE> that will be used to create the qualified name.<DD><CODE>className</CODE> - the fully qualified name of the enclosing class.<DD><CODE>value</CODE> - an object representing the <code>enum</code> value.
 <DT><B>Returns:</B><DD>a new qualified name.</DL>
 </DD>
 </DL>
 <HR>
 
+<A NAME="createEnumLiteral(org.eclipse.jdt.core.dom.AST, java.lang.String, org.eclipse.jdt.core.IField)"><!-- --></A><H3>
+createEnumLiteral</H3>
+<PRE>
+public static org.eclipse.jdt.core.dom.QualifiedName <B>createEnumLiteral</B>(org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                                                                       java.lang.String&nbsp;className,
+                                                                       org.eclipse.jdt.core.IField&nbsp;enumConstant)</PRE>
+<DL>
+<DD>Creates a new <CODE>QualifiedName</CODE> to represent an <code>enum</code> literal value.
+<P>
+<DD><DL>
+<DT><B>Parameters:</B><DD><CODE>ast</CODE> - the <CODE>AST</CODE> that will be used to create the qualified name.<DD><CODE>className</CODE> - the fully qualified name of the enclosing class.<DD><CODE>enumConstant</CODE> - a <CODE>IField</CODE> where <code>isEnumConstant()</code> is <code>true</code>.
+<DT><B>Returns:</B><DD>a new qualified name.
+<DT><B>Throws:</B>
+<DD><CODE>org.eclipse.jdt.core.JavaModelException</CODE><DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+</DL>
+</DD>
+</DL>
+<HR>
+
 <A NAME="createTypeLiteral(org.eclipse.jdt.core.dom.AST, java.lang.Object)"><!-- --></A><H3>
 createTypeLiteral</H3>
 <PRE>
@@ -630,7 +660,7 @@
 <TR>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
 &nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>PREV CLASS</B></A>&nbsp;
-&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><B>NEXT CLASS</B></A></FONT></TD>
+&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>NEXT CLASS</B></A></FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
   <A HREF="../../../../../../index.html?org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationsCore.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html
index be70342..e9717b6 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:21 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:49 IST 2011 -->
 <TITLE>
 AnnotationsCorePlugin
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -224,7 +224,7 @@
 <TH ALIGN="left"><B>Methods inherited from class org.eclipse.core.runtime.Plugin</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>find, find, getBundle, getDescriptor, getLog, getPluginPreferences, getStateLocation, initializeDefaultPluginPreferences, internalInitializeDefaultPluginPreferences, isDebugging, openStream, openStream, savePluginPreferences, setDebugging, shutdown, startup, toString</CODE></TD>
+<TD><CODE>find, find, getBundle, getDescriptor, getLog, getPluginPreferences, getStateLocation, internalInitializeDefaultPluginPreferences, isDebugging, openStream, openStream, savePluginPreferences, setDebugging, shutdown, startup, toString</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -233,7 +233,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsManager.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsManager.html
index 72d681f..7b6c932 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsManager.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/AnnotationsManager.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:21 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:13 IST 2011 -->
 <TITLE>
 AnnotationsManager
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -55,7 +55,7 @@
 
 <TR>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><B>PREV CLASS</B></A>&nbsp;
+&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>PREV CLASS</B></A>&nbsp;
 &nbsp;NEXT CLASS</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
   <A HREF="../../../../../../index.html?org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" target="_top"><B>FRAMES</B></A>  &nbsp;
@@ -164,11 +164,12 @@
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected static&nbsp;java.util.Map&lt;java.lang.String,org.eclipse.core.runtime.IConfigurationElement&gt;</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationInitializerCache()">getAnnotationInitializerCache</A></B>()</CODE>
+<CODE>static&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A></CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationDefinitionForType(org.eclipse.jdt.core.IType)">getAnnotationDefinitionForType</A></B>(org.eclipse.jdt.core.IType&nbsp;annotationType)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given <CODE>IType</CODE>
+ or null if no annotation definition can be found.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
@@ -193,7 +194,7 @@
 <TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotations(org.eclipse.jdt.core.IJavaElement)">getAnnotations</A></B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of all the contributed <CODE>Annotation</CODE> that target the given java element type.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>As of 1.1 replaced by <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationTypes(org.eclipse.jdt.core.IJavaElement)"><CODE>getAnnotationTypes(IJavaElement)</CODE></A></I></TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
@@ -205,12 +206,11 @@
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>(package private) static&nbsp;java.lang.String</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAttributeValue(org.eclipse.core.runtime.IConfigurationElement, java.lang.String)">getAttributeValue</A></B>(org.eclipse.core.runtime.IConfigurationElement&nbsp;configurationElement,
-                  java.lang.String&nbsp;attributeName)</CODE>
+<CODE>static&nbsp;java.util.List&lt;org.eclipse.jdt.core.IType&gt;</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationTypes(org.eclipse.jdt.core.IJavaElement)">getAnnotationTypes</A></B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of all the contributed annotations that target the given <CODE>IJavaElement</CODE>.</TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -219,7 +219,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -250,15 +250,39 @@
 </DL>
 <HR>
 
+<A NAME="getAnnotationTypes(org.eclipse.jdt.core.IJavaElement)"><!-- --></A><H3>
+getAnnotationTypes</H3>
+<PRE>
+public static java.util.List&lt;org.eclipse.jdt.core.IType&gt; <B>getAnnotationTypes</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement)</PRE>
+<DL>
+<DD>Returns a list of all the contributed annotations that target the given <CODE>IJavaElement</CODE>.
+<P>
+<DD><DL>
+<DT><B>Parameters:</B><DD><CODE>javaElement</CODE> - one of
+ <li>org.eclipse.jdt.core.IPackageDeclaration</li>
+ <li>org.eclipse.jdt.core.IType</li>
+ <li>org.eclipse.jdt.core.IField</li>
+ <li>org.eclipse.jdt.core.IMethod</li>
+ <li>org.eclipse.jdt.core.ILocalVariable</li>
+<DT><B>Returns:</B><DD>a list of types which represent annotation types.<DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+</DL>
+</DD>
+</DL>
+<HR>
+
 <A NAME="getAnnotations(org.eclipse.jdt.core.IJavaElement)"><!-- --></A><H3>
 getAnnotations</H3>
 <PRE>
-public static java.util.List&lt;java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&gt; <B>getAnnotations</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement)</PRE>
+<FONT SIZE="-1">@Deprecated
+</FONT>public static java.util.List&lt;java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&gt; <B>getAnnotations</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement)</PRE>
 <DL>
+<DD><B>Deprecated.</B>&nbsp;<I>As of 1.1 replaced by <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationTypes(org.eclipse.jdt.core.IJavaElement)"><CODE>getAnnotationTypes(IJavaElement)</CODE></A></I>
+<P>
 <DD>Returns a list of all the contributed <CODE>Annotation</CODE> that target the given java element type.
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>element</CODE> - one of
+<DT><B>Parameters:</B><DD><CODE>javaElement</CODE> - one of
  <li>org.eclipse.jdt.core.IPackageDeclaration</li>
  <li>org.eclipse.jdt.core.IType</li>
  <li>org.eclipse.jdt.core.IField</li>
@@ -299,6 +323,23 @@
 </DL>
 <HR>
 
+<A NAME="getAnnotationDefinitionForType(org.eclipse.jdt.core.IType)"><!-- --></A><H3>
+getAnnotationDefinitionForType</H3>
+<PRE>
+public static <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A> <B>getAnnotationDefinitionForType</B>(org.eclipse.jdt.core.IType&nbsp;annotationType)</PRE>
+<DL>
+<DD>Returns the <A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given <CODE>IType</CODE>
+ or null if no annotation definition can be found.
+<P>
+<DD><DL>
+<DT><B>Parameters:</B><DD><CODE>annotationType</CODE> - an <code>org.eclipse.jdt.core.IType</code> which represents an annotation type.
+<DT><B>Returns:</B><DD>the annotation definition for the <code>org.eclipse.jdt.core.IType</code>.<DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+</DL>
+</DD>
+</DL>
+<HR>
+
 <A NAME="getAnnotationAttributeInitializerForName(org.eclipse.jdt.core.dom.Name)"><!-- --></A><H3>
 getAnnotationAttributeInitializerForName</H3>
 <PRE>
@@ -342,17 +383,6 @@
 </DL>
 <HR>
 
-<A NAME="getAnnotationInitializerCache()"><!-- --></A><H3>
-getAnnotationInitializerCache</H3>
-<PRE>
-protected static java.util.Map&lt;java.lang.String,org.eclipse.core.runtime.IConfigurationElement&gt; <B>getAnnotationInitializerCache</B>()</PRE>
-<DL>
-<DD><DL>
-</DL>
-</DD>
-</DL>
-<HR>
-
 <A NAME="getAnnotationProcessorsCache()"><!-- --></A><H3>
 getAnnotationProcessorsCache</H3>
 <PRE>
@@ -362,18 +392,6 @@
 </DL>
 </DD>
 </DL>
-<HR>
-
-<A NAME="getAttributeValue(org.eclipse.core.runtime.IConfigurationElement, java.lang.String)"><!-- --></A><H3>
-getAttributeValue</H3>
-<PRE>
-static java.lang.String <B>getAttributeValue</B>(org.eclipse.core.runtime.IConfigurationElement&nbsp;configurationElement,
-                                          java.lang.String&nbsp;attributeName)</PRE>
-<DL>
-<DD><DL>
-</DL>
-</DD>
-</DL>
 <!-- ========= END OF CLASS DATA ========= -->
 <HR>
 
@@ -405,7 +423,7 @@
 
 <TR>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><B>PREV CLASS</B></A>&nbsp;
+&nbsp;<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>PREV CLASS</B></A>&nbsp;
 &nbsp;NEXT CLASS</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
   <A HREF="../../../../../../index.html?org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" target="_top"><B>FRAMES</B></A>  &nbsp;
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationDefinition.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationDefinition.html
index ebd2fc5..c844119 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationDefinition.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationDefinition.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.annotations.core.AnnotationDefinition
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -41,7 +41,7 @@
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationDefinition.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core//class-useAnnotationDefinition.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationDefinition.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -128,6 +128,15 @@
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given fully qualified <CODE>Annotation</CODE> class
  name or null if no annotation definition can be found.</TD>
 </TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>static&nbsp;<A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationDefinition</A></CODE></FONT></TD>
+<TD><CODE><B>AnnotationsManager.</B><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html#getAnnotationDefinitionForType(org.eclipse.jdt.core.IType)">getAnnotationDefinitionForType</A></B>(org.eclipse.jdt.core.IType&nbsp;annotationType)</CODE>
+
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><CODE>AnnotationDefinition</CODE></A> for the given <CODE>IType</CODE>
+ or null if no annotation definition can be found.</TD>
+</TR>
 </TABLE>
 &nbsp;
 <P>
@@ -172,7 +181,7 @@
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
@@ -189,7 +198,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationDefinition.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core//class-useAnnotationDefinition.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationDefinition.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCore.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCore.html
index 878371d..baa3bf7 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCore.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCore.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.annotations.core.AnnotationsCore
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -41,7 +41,7 @@
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationsCore.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core//class-useAnnotationsCore.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationsCore.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -101,7 +101,7 @@
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
@@ -118,7 +118,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationsCore.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core//class-useAnnotationsCore.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationsCore.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCorePlugin.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCorePlugin.html
deleted file mode 100644
index aa44d96..0000000
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCorePlugin.html
+++ /dev/null
@@ -1,180 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
-<TITLE>
-Uses of Class org.eclipse.jst.ws.annotations.core.AnnotationsCorePlugin
-</TITLE>
-
-<META NAME="date" CONTENT="2010-04-07">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.eclipse.jst.ws.annotations.core.AnnotationsCorePlugin";
-    }
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationsCorePlugin.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="AnnotationsCorePlugin.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<HR>
-<CENTER>
-<H2>
-<B>Uses of Class<br>org.eclipse.jst.ws.annotations.core.AnnotationsCorePlugin</B></H2>
-</CENTER>
-
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-Packages that use <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="#org.eclipse.jst.ws.annotations.core"><B>org.eclipse.jst.ws.annotations.core</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<P>
-<A NAME="org.eclipse.jst.ws.annotations.core"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-Uses of <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A> in <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A></FONT></TH>
-</TR>
-</TABLE>
-&nbsp;
-<P>
-
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/package-summary.html">org.eclipse.jst.ws.annotations.core</A> that return <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>static&nbsp;<A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A></CODE></FONT></TD>
-<TD><CODE><B>AnnotationsCorePlugin.</B><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html#getDefault()">getDefault</A></B>()</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<P>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_bottom_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationsCorePlugin.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="AnnotationsCorePlugin.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsManager.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsManager.html
index 2eb22f7..7857095 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsManager.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/class-use/AnnotationsManager.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.annotations.core.AnnotationsManager
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -41,7 +41,7 @@
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationsManager.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core//class-useAnnotationsManager.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationsManager.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -101,7 +101,7 @@
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
   <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
@@ -118,7 +118,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/\class-useAnnotationsManager.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../index.html?org/eclipse/jst/ws/annotations/core//class-useAnnotationsManager.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationsManager.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html
index 00c506b..47e6bf8 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 AnnotationAttributeInitializer
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -76,9 +76,9 @@
 </TR>
 <TR>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
+  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
+DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
 </TR>
 </TABLE>
 <A NAME="skip-navbar_top"></A>
@@ -124,42 +124,7 @@
 <HR>
 
 <P>
-<!-- =========== FIELD SUMMARY =========== -->
 
-<A NAME="field_summary"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Field Summary</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected static&nbsp;java.lang.String</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#MISSING_IDENTIFER">MISSING_IDENTIFER</A></B></CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-
-<A NAME="constructor_summary"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Constructor Summary</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected </CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#AnnotationAttributeInitializer()">AnnotationAttributeInitializer</A></B>()</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
 <!-- ========== METHOD SUMMARY =========== -->
 
 <A NAME="method_summary"><!-- --></A>
@@ -170,26 +135,6 @@
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;org.eclipse.jface.text.contentassist.CompletionProposal</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression)">createCompletionProposal</A></B>(java.lang.String&nbsp;proposal,
-                         org.eclipse.jdt.core.dom.Expression&nbsp;value)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;org.eclipse.jface.text.contentassist.CompletionProposal</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression, org.eclipse.swt.graphics.Image, java.lang.String)">createCompletionProposal</A></B>(java.lang.String&nbsp;proposal,
-                         org.eclipse.jdt.core.dom.Expression&nbsp;value,
-                         org.eclipse.swt.graphics.Image&nbsp;image,
-                         java.lang.String&nbsp;displayString)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
 <CODE>&nbsp;java.util.List&lt;org.eclipse.jface.text.contentassist.ICompletionProposal&gt;</CODE></FONT></TD>
 <TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)">getCompletionProposalsForMemberValuePair</A></B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
                                          org.eclipse.jdt.core.dom.MemberValuePair&nbsp;memberValuePair)</CODE>
@@ -214,6 +159,16 @@
                     java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</CODE>
 
 <BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>&nbsp;java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt;</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)">getMemberValuePairs</A></B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                    org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                    org.eclipse.jdt.core.IType&nbsp;type)</CODE>
+
+<BR>
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.</TD>
 </TR>
 </TABLE>
@@ -223,48 +178,12 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
 <P>
 
-<!-- ============ FIELD DETAIL =========== -->
-
-<A NAME="field_detail"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
-<B>Field Detail</B></FONT></TH>
-</TR>
-</TABLE>
-
-<A NAME="MISSING_IDENTIFER"><!-- --></A><H3>
-MISSING_IDENTIFER</H3>
-<PRE>
-protected static final java.lang.String <B>MISSING_IDENTIFER</B></PRE>
-<DL>
-<DL>
-<DT><B>See Also:</B><DD><A HREF="../../../../../../../constant-values.html#org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer.MISSING_IDENTIFER">Constant Field Values</A></DL>
-</DL>
-
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-
-<A NAME="constructor_detail"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
-<B>Constructor Detail</B></FONT></TH>
-</TR>
-</TABLE>
-
-<A NAME="AnnotationAttributeInitializer()"><!-- --></A><H3>
-AnnotationAttributeInitializer</H3>
-<PRE>
-protected <B>AnnotationAttributeInitializer</B>()</PRE>
-<DL>
-</DL>
-
 <!-- ============ METHOD DETAIL ========== -->
 
 <A NAME="method_detail"><!-- --></A>
@@ -278,10 +197,13 @@
 <A NAME="getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><!-- --></A><H3>
 getMemberValuePairs</H3>
 <PRE>
-public java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
-                                                                                    org.eclipse.jdt.core.dom.AST&nbsp;ast,
-                                                                                    java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</PRE>
+<FONT SIZE="-1">@Deprecated
+</FONT>public java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                                                                                               org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                                                                                               java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</PRE>
 <DL>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>
+<P>
 <DD><B>Description copied from interface: <CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)">IAnnotationAttributeInitializer</A></CODE></B></DD>
 <DD>Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.
 <P>
@@ -296,6 +218,28 @@
 </DL>
 <HR>
 
+<A NAME="getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><!-- --></A><H3>
+getMemberValuePairs</H3>
+<PRE>
+public java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                                                                                    org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                                                                                    org.eclipse.jdt.core.IType&nbsp;type)</PRE>
+<DL>
+<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)">IAnnotationAttributeInitializer</A></CODE></B></DD>
+<DD>Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.
+<P>
+<DD><DL>
+<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)">getMemberValuePairs</A></CODE> in interface <CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A></CODE></DL>
+</DD>
+<DD><DL>
+<DT><B>Parameters:</B><DD><CODE>javaElement</CODE> - the java element on which the annotation is declared.<DD><CODE>ast</CODE> - the <code>AST</code> with which to create the member value pairs.<DD><CODE>type</CODE> - the <CODE>IType</CODE> which represents an annotation type,.
+<DT><B>Returns:</B><DD>a list of member value pairs.<DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+</DL>
+</DD>
+</DL>
+<HR>
+
 <A NAME="getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)"><!-- --></A><H3>
 getCompletionProposalsForMemberValuePair</H3>
 <PRE>
@@ -332,38 +276,6 @@
 <DT><B>Returns:</B><DD>a list of completion proposals.</DL>
 </DD>
 </DL>
-<HR>
-
-<A NAME="createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression)"><!-- --></A><H3>
-createCompletionProposal</H3>
-<PRE>
-protected org.eclipse.jface.text.contentassist.CompletionProposal <B>createCompletionProposal</B>(java.lang.String&nbsp;proposal,
-                                                                                           org.eclipse.jdt.core.dom.Expression&nbsp;value)</PRE>
-<DL>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression, org.eclipse.swt.graphics.Image, java.lang.String)"><!-- --></A><H3>
-createCompletionProposal</H3>
-<PRE>
-protected org.eclipse.jface.text.contentassist.CompletionProposal <B>createCompletionProposal</B>(java.lang.String&nbsp;proposal,
-                                                                                           org.eclipse.jdt.core.dom.Expression&nbsp;value,
-                                                                                           org.eclipse.swt.graphics.Image&nbsp;image,
-                                                                                           java.lang.String&nbsp;displayString)</PRE>
-<DL>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-</DL>
-</DD>
-</DL>
 <!-- ========= END OF CLASS DATA ========= -->
 <HR>
 
@@ -416,9 +328,9 @@
 </TR>
 <TR>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
+  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
+DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
 </TR>
 </TABLE>
 <A NAME="skip-navbar_bottom"></A>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html
index 1a42a73..a40c17c 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 DefaultsAnnotationAttributeInitializer
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -76,7 +76,7 @@
 </TR>
 <TR>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
+  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
 DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
 </TR>
@@ -105,7 +105,7 @@
 </PRE>
 
 <P>
-Constructs <CODE>MemberValuePair</CODE> from the defaults found in the given <CODE>Annotation</CODE>.
+Constructs a list of <CODE>MemberValuePair</CODE> using the annotation elements default values.
  <p>
  <strong>Provisional API:</strong> This class/interface is part of an interim API that is still under
  development and expected to change significantly before reaching stability. It is being made available at
@@ -118,25 +118,7 @@
 <HR>
 
 <P>
-<!-- =========== FIELD SUMMARY =========== -->
 
-<A NAME="field_summary"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Field Summary</B></FONT></TH>
-</TR>
-</TABLE>
-&nbsp;<A NAME="fields_inherited_from_class_org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left"><B>Fields inherited from class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A></B></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#MISSING_IDENTIFER">MISSING_IDENTIFER</A></CODE></TD>
-</TR>
-</TABLE>
-&nbsp;
 <!-- ======== CONSTRUCTOR SUMMARY ======== -->
 
 <A NAME="constructor_summary"><!-- --></A>
@@ -169,8 +151,17 @@
                     java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a list of <CODE>MemberValuePair</CODE> using the declared method names and default values in
- the given <CODE>Annotation</CODE>.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>&nbsp;java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt;</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)">getMemberValuePairs</A></B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                    org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                    org.eclipse.jdt.core.IType&nbsp;type)</CODE>
+
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a list of <CODE>MemberValuePair</CODE> from the annotation type element names and default values.</TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer"><!-- --></A>
@@ -179,7 +170,7 @@
 <TH ALIGN="left"><B>Methods inherited from class org.eclipse.jst.ws.annotations.core.initialization.<A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A></B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression)">createCompletionProposal</A>, <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#createCompletionProposal(java.lang.String, org.eclipse.jdt.core.dom.Expression, org.eclipse.swt.graphics.Image, java.lang.String)">createCompletionProposal</A>, <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)">getCompletionProposalsForMemberValuePair</A>, <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)">getCompletionProposalsForSingleMemberAnnotation</A></CODE></TD>
+<TD><CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)">getCompletionProposalsForMemberValuePair</A>, <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation)">getCompletionProposalsForSingleMemberAnnotation</A></CODE></TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -188,7 +179,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -224,10 +215,13 @@
 <A NAME="getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><!-- --></A><H3>
 getMemberValuePairs</H3>
 <PRE>
-public java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
-                                                                                    org.eclipse.jdt.core.dom.AST&nbsp;ast,
-                                                                                    java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</PRE>
+<FONT SIZE="-1">@Deprecated
+</FONT>public java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                                                                                               org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                                                                                               java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</PRE>
 <DL>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>
+<P>
 <DD>Constructs a list of <CODE>MemberValuePair</CODE> using the declared method names and default values in
  the given <CODE>Annotation</CODE>.
 <P>
@@ -237,7 +231,26 @@
 <DD><DL>
 <DT><B>Parameters:</B><DD><CODE>javaElement</CODE> - the java element on which the annotation is declared.<DD><CODE>ast</CODE> - the <code>AST</code> with which to create the member value pairs.<DD><CODE>annotationClass</CODE> - the <CODE>Annotation</CODE> class which may be
  used to query the declared members of the annotation type and the members default values.
-<DT><B>Returns:</B><DD>a list of member value pairs.<DT><B>See Also:</B><DD><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><CODE>IAnnotationAttributeInitializer.getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)</CODE></A></DL>
+<DT><B>Returns:</B><DD>a list of member value pairs.</DL>
+</DD>
+</DL>
+<HR>
+
+<A NAME="getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><!-- --></A><H3>
+getMemberValuePairs</H3>
+<PRE>
+public java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                                                                                    org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                                                                                    org.eclipse.jdt.core.IType&nbsp;type)</PRE>
+<DL>
+<DD>Constructs a list of <CODE>MemberValuePair</CODE> from the annotation type element names and default values.
+<P>
+<DD><DL>
+<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)">getMemberValuePairs</A></CODE> in interface <CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)">getMemberValuePairs</A></CODE> in class <CODE><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">AnnotationAttributeInitializer</A></CODE></DL>
+</DD>
+<DD><DL>
+<DT><B>Parameters:</B><DD><CODE>javaElement</CODE> - the java element on which the annotation is declared.<DD><CODE>ast</CODE> - the <code>AST</code> with which to create the member value pairs.<DD><CODE>type</CODE> - the <CODE>IType</CODE> which represents an annotation type,.
+<DT><B>Returns:</B><DD>a list of member value pairs.</DL>
 </DD>
 </DL>
 <!-- ========= END OF CLASS DATA ========= -->
@@ -292,7 +305,7 @@
 </TR>
 <TR>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
+  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
 DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
 </TR>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html
index 96f4be8..e7f092b 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 IAnnotationAttributeInitializer
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -148,6 +148,16 @@
                     java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</CODE>
 
 <BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+<CODE>&nbsp;java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt;</CODE></FONT></TD>
+<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)">getMemberValuePairs</A></B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                    org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                    org.eclipse.jdt.core.IType&nbsp;type)</CODE>
+
+<BR>
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.</TD>
 </TR>
 </TABLE>
@@ -167,10 +177,13 @@
 <A NAME="getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, java.lang.Class)"><!-- --></A><H3>
 getMemberValuePairs</H3>
 <PRE>
-java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
-                                                                             org.eclipse.jdt.core.dom.AST&nbsp;ast,
-                                                                             java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</PRE>
+<FONT SIZE="-1">@Deprecated
+</FONT>java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                                                                                        org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                                                                                        java.lang.Class&lt;? extends java.lang.annotation.Annotation&gt;&nbsp;annotationClass)</PRE>
 <DL>
+<DD><B>Deprecated.</B>&nbsp;<I>as of 1.1 replaced by <A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html#getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><CODE>getMemberValuePairs(IJavaElement, AST, IType)</CODE></A></I>
+<P>
 <DD>Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.
 <P>
 <DD><DL>
@@ -181,6 +194,24 @@
 </DL>
 <HR>
 
+<A NAME="getMemberValuePairs(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.AST, org.eclipse.jdt.core.IType)"><!-- --></A><H3>
+getMemberValuePairs</H3>
+<PRE>
+java.util.List&lt;org.eclipse.jdt.core.dom.MemberValuePair&gt; <B>getMemberValuePairs</B>(org.eclipse.jdt.core.IJavaElement&nbsp;javaElement,
+                                                                             org.eclipse.jdt.core.dom.AST&nbsp;ast,
+                                                                             org.eclipse.jdt.core.IType&nbsp;type)</PRE>
+<DL>
+<DD>Returns a list of <CODE>MemberValuePair</CODE> that may be added to a <CODE>NormalAnnotation</CODE>.
+<P>
+<DD><DL>
+<DT><B>Parameters:</B><DD><CODE>javaElement</CODE> - the java element on which the annotation is declared.<DD><CODE>ast</CODE> - the <code>AST</code> with which to create the member value pairs.<DD><CODE>type</CODE> - the <CODE>IType</CODE> which represents an annotation type,.
+<DT><B>Returns:</B><DD>a list of member value pairs.<DT><B>Since:</B></DT>
+  <DD>1.1</DD>
+</DL>
+</DD>
+</DL>
+<HR>
+
 <A NAME="getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement, org.eclipse.jdt.core.dom.MemberValuePair)"><!-- --></A><H3>
 getCompletionProposalsForMemberValuePair</H3>
 <PRE>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/AnnotationAttributeInitializer.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/AnnotationAttributeInitializer.html
index fa15946..9a5cf0b 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/AnnotationAttributeInitializer.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/AnnotationAttributeInitializer.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization/\class-useAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization//class-useAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationAttributeInitializer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -116,7 +116,7 @@
 <TD><CODE><B><A HREF="../../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">DefaultsAnnotationAttributeInitializer</A></B></CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs <CODE>MemberValuePair</CODE> from the defaults found in the given <CODE>Annotation</CODE>.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a list of <CODE>MemberValuePair</CODE> using the annotation elements default values.</TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -154,7 +154,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization/\class-useAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization//class-useAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationAttributeInitializer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/DefaultsAnnotationAttributeInitializer.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/DefaultsAnnotationAttributeInitializer.html
index a023cf6..e330350 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/DefaultsAnnotationAttributeInitializer.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/DefaultsAnnotationAttributeInitializer.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.annotations.core.initialization.DefaultsAnnotationAttributeInitializer
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization/\class-useDefaultsAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization//class-useDefaultsAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="DefaultsAnnotationAttributeInitializer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -118,7 +118,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization/\class-useDefaultsAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization//class-useDefaultsAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="DefaultsAnnotationAttributeInitializer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/IAnnotationAttributeInitializer.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/IAnnotationAttributeInitializer.html
index 8f5d8c3..186603e 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/IAnnotationAttributeInitializer.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/class-use/IAnnotationAttributeInitializer.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Interface org.eclipse.jst.ws.annotations.core.initialization.IAnnotationAttributeInitializer
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization/\class-useIAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization//class-useIAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="IAnnotationAttributeInitializer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -165,7 +165,7 @@
 <TD><CODE><B><A HREF="../../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">DefaultsAnnotationAttributeInitializer</A></B></CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs <CODE>MemberValuePair</CODE> from the defaults found in the given <CODE>Annotation</CODE>.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a list of <CODE>MemberValuePair</CODE> using the annotation elements default values.</TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -203,7 +203,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization/\class-useIAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/initialization//class-useIAnnotationAttributeInitializer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="IAnnotationAttributeInitializer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-frame.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-frame.html
index 4fd4677..fe290ec 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-frame.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-frame.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.initialization
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-summary.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-summary.html
index 2709981..dbbdbf5 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-summary.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-summary.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.initialization
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -109,7 +109,7 @@
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization">DefaultsAnnotationAttributeInitializer</A></B></TD>
-<TD>Constructs <CODE>MemberValuePair</CODE> from the defaults found in the given <CODE>Annotation</CODE>.</TD>
+<TD>Constructs a list of <CODE>MemberValuePair</CODE> using the annotation elements default values.</TD>
 </TR>
 </TABLE>
 &nbsp;
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-tree.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-tree.html
index 002714a..cac9627 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-tree.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-tree.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.initialization Class Hierarchy
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-use.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-use.html
index 0fa5e11..653dba5 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-use.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/initialization/package-use.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Package org.eclipse.jst.ws.annotations.core.initialization
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-frame.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-frame.html
index 64033a6..93a1190 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-frame.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-frame.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -27,8 +27,6 @@
 <BR>
 <A HREF="AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core" target="classFrame">AnnotationsCore</A>
 <BR>
-<A HREF="AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core" target="classFrame">AnnotationsCorePlugin</A>
-<BR>
 <A HREF="AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core" target="classFrame">AnnotationsManager</A></FONT></TD>
 </TR>
 </TABLE>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-summary.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-summary.html
index a5f932f..be6dbf5 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-summary.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-summary.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -100,12 +100,6 @@
 <TD>Utility class for creating annotations and member value pairs.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD WIDTH="15%"><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsCorePlugin</A></B></TD>
-<TD>
- <strong>Provisional API:</strong> This class/interface is part of an interim API that is still under 
- development and expected to change significantly before reaching stability.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core">AnnotationsManager</A></B></TD>
 <TD>Manages the annotation categories, definitions, processors and initializers contributed through the
  <code>org.eclipse.jst.ws.annotations.core.annotationDefinition</code>,
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-tree.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-tree.html
index cadab8c..27ab903 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-tree.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-tree.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core Class Hierarchy
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -92,10 +92,7 @@
 </H2>
 <UL>
 <LI TYPE="circle">java.lang.Object<UL>
-<LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationDefinition</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCore</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsManager</B></A><LI TYPE="circle">org.eclipse.core.runtime.Plugin (implements org.osgi.framework.BundleActivator)
-<UL>
-<LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCorePlugin</B></A></UL>
-</UL>
+<LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationDefinition</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCore</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsManager</B></A></UL>
 </UL>
 <HR>
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-use.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-use.html
index 2d4fc8a..bdafe8e 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-use.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/package-use.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Uses of Package org.eclipse.jst.ws.annotations.core
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
 
@@ -111,14 +111,6 @@
  <code>org.eclipse.jst.ws.annotations.core.annotationCategory</code> and
  <code>org.eclipse.jst.ws.annotations.core.annotationInitializer</code> extension points.</TD>
 </TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><B><A HREF="../../../../../../org/eclipse/jst/ws/annotations/core/class-use/AnnotationsCorePlugin.html#org.eclipse.jst.ws.annotations.core"><B>AnnotationsCorePlugin</B></A></B>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
- <strong>Provisional API:</strong> This class/interface is part of an interim API that is still under 
- development and expected to change significantly before reaching stability.</TD>
-</TR>
 </TABLE>
 &nbsp;
 <P>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html
index b1c4c92..e518a95 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:21 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:49 IST 2011 -->
 <TITLE>
 AbstractAnnotationProcessor
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -76,9 +76,9 @@
 </TR>
 <TR>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
+  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
+DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
 </TR>
 </TABLE>
 <A NAME="skip-navbar_top"></A>
@@ -119,42 +119,7 @@
 <HR>
 
 <P>
-<!-- =========== FIELD SUMMARY =========== -->
 
-<A NAME="field_summary"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Field Summary</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;com.sun.mirror.apt.AnnotationProcessorEnvironment</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#environment">environment</A></B></CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<!-- ======== CONSTRUCTOR SUMMARY ======== -->
-
-<A NAME="constructor_summary"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Constructor Summary</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected </CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#AbstractAnnotationProcessor()">AbstractAnnotationProcessor</A></B>()</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
 <!-- ========== METHOD SUMMARY =========== -->
 
 <A NAME="method_summary"><!-- --></A>
@@ -165,129 +130,6 @@
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printError(com.sun.mirror.util.SourcePosition, java.lang.String)">printError</A></B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-           java.lang.String&nbsp;message)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints an error message.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printError(java.lang.String)">printError</A></B>(java.lang.String&nbsp;message)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints an error message.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableError(com.sun.mirror.util.SourcePosition, java.lang.String)">printFixableError</A></B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                  java.lang.String&nbsp;message)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Print an error including the given arguments for use in quick-fixes.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableError(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)">printFixableError</A></B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                  java.lang.String&nbsp;message,
-                  java.lang.String&nbsp;pluginId,
-                  java.lang.String&nbsp;errorId)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Print an error including the given arguments for use in quick-fixes.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableError(java.lang.String, java.lang.String, java.lang.String)">printFixableError</A></B>(java.lang.String&nbsp;message,
-                  java.lang.String&nbsp;pluginId,
-                  java.lang.String&nbsp;errorId)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Print an error including the given arguments for use in quick-fixes.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableNotice(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)">printFixableNotice</A></B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                   java.lang.String&nbsp;message,
-                   java.lang.String&nbsp;pluginId,
-                   java.lang.String&nbsp;errorId)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Print a notice including the given arguments for use in quick-fixes.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableNotice(java.lang.String, java.lang.String, java.lang.String)">printFixableNotice</A></B>(java.lang.String&nbsp;message,
-                   java.lang.String&nbsp;pluginId,
-                   java.lang.String&nbsp;errorId)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Print a notice including the given arguments for use in quick-fixes.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableWarning(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)">printFixableWarning</A></B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                    java.lang.String&nbsp;message,
-                    java.lang.String&nbsp;pluginId,
-                    java.lang.String&nbsp;errorId)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Print a warning including the given arguments for use in quick-fixes.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printFixableWarning(java.lang.String, java.lang.String, java.lang.String)">printFixableWarning</A></B>(java.lang.String&nbsp;message,
-                    java.lang.String&nbsp;pluginId,
-                    java.lang.String&nbsp;errorId)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Print a warning including the given arguments for use in quick-fixes.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printNotice(com.sun.mirror.util.SourcePosition, java.lang.String)">printNotice</A></B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-            java.lang.String&nbsp;message)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints a notice.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printNotice(java.lang.String)">printNotice</A></B>(java.lang.String&nbsp;message)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints a notice.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printWarning(com.sun.mirror.util.SourcePosition, java.lang.String)">printWarning</A></B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-             java.lang.String&nbsp;message)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints a warning message.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
-<CODE>protected &nbsp;void</CODE></FONT></TD>
-<TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#printWarning(java.lang.String)">printWarning</A></B>(java.lang.String&nbsp;message)</CODE>
-
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints a warning message.</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
 <CODE>abstract &nbsp;void</CODE></FONT></TD>
 <TD><CODE><B><A HREF="../../../../../../../org/eclipse/jst/ws/annotations/core/processor/AbstractAnnotationProcessor.html#process()">process</A></B>()</CODE>
 
@@ -309,48 +151,12 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
 <P>
 
-<!-- ============ FIELD DETAIL =========== -->
-
-<A NAME="field_detail"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
-<B>Field Detail</B></FONT></TH>
-</TR>
-</TABLE>
-
-<A NAME="environment"><!-- --></A><H3>
-environment</H3>
-<PRE>
-protected com.sun.mirror.apt.AnnotationProcessorEnvironment <B>environment</B></PRE>
-<DL>
-<DL>
-</DL>
-</DL>
-
-<!-- ========= CONSTRUCTOR DETAIL ======== -->
-
-<A NAME="constructor_detail"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
-<B>Constructor Detail</B></FONT></TH>
-</TR>
-</TABLE>
-
-<A NAME="AbstractAnnotationProcessor()"><!-- --></A><H3>
-AbstractAnnotationProcessor</H3>
-<PRE>
-protected <B>AbstractAnnotationProcessor</B>()</PRE>
-<DL>
-</DL>
-
 <!-- ============ METHOD DETAIL ========== -->
 
 <A NAME="method_detail"><!-- --></A>
@@ -391,233 +197,6 @@
 <DT><B>See Also:</B><DD><CODE>AnnotationProcessor</CODE></DL>
 </DD>
 </DL>
-<HR>
-
-<A NAME="printError(com.sun.mirror.util.SourcePosition, java.lang.String)"><!-- --></A><H3>
-printError</H3>
-<PRE>
-protected void <B>printError</B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                          java.lang.String&nbsp;message)</PRE>
-<DL>
-<DD>Prints an error message.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>position</CODE> - the position where the error occured, or null if it is unknown or not applicable<DD><CODE>message</CODE> - the message, or an empty string if none</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printError(java.lang.String)"><!-- --></A><H3>
-printError</H3>
-<PRE>
-protected void <B>printError</B>(java.lang.String&nbsp;message)</PRE>
-<DL>
-<DD>Prints an error message.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>message</CODE> - the message, or an empty string if none</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printWarning(com.sun.mirror.util.SourcePosition, java.lang.String)"><!-- --></A><H3>
-printWarning</H3>
-<PRE>
-protected void <B>printWarning</B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                            java.lang.String&nbsp;message)</PRE>
-<DL>
-<DD>Prints a warning message.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>position</CODE> - the position where the warning occured, or null if it is unknown or not applicable<DD><CODE>message</CODE> - the message, or an empty string if none</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printWarning(java.lang.String)"><!-- --></A><H3>
-printWarning</H3>
-<PRE>
-protected void <B>printWarning</B>(java.lang.String&nbsp;message)</PRE>
-<DL>
-<DD>Prints a warning message.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>message</CODE> - the message, or an empty string if none</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printNotice(com.sun.mirror.util.SourcePosition, java.lang.String)"><!-- --></A><H3>
-printNotice</H3>
-<PRE>
-protected void <B>printNotice</B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                           java.lang.String&nbsp;message)</PRE>
-<DL>
-<DD>Prints a notice.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>position</CODE> - the position where the notice occured, or null if it is unknown or not applicable<DD><CODE>message</CODE> - the message, or an empty string if none</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printNotice(java.lang.String)"><!-- --></A><H3>
-printNotice</H3>
-<PRE>
-protected void <B>printNotice</B>(java.lang.String&nbsp;message)</PRE>
-<DL>
-<DD>Prints a notice.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>message</CODE> - the message, or an empty string if none</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printFixableError(com.sun.mirror.util.SourcePosition, java.lang.String)"><!-- --></A><H3>
-printFixableError</H3>
-<PRE>
-protected void <B>printFixableError</B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                                 java.lang.String&nbsp;message)</PRE>
-<DL>
-<DD>Print an error including the given arguments for use in quick-fixes.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>position</CODE> - position of the error<DD><CODE>message</CODE> - message to display to the user</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printFixableError(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
-printFixableError</H3>
-<PRE>
-protected void <B>printFixableError</B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                                 java.lang.String&nbsp;message,
-                                 java.lang.String&nbsp;pluginId,
-                                 java.lang.String&nbsp;errorId)</PRE>
-<DL>
-<DD>Print an error including the given arguments for use in quick-fixes.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>position</CODE> - position of the error<DD><CODE>message</CODE> - message to display to the user<DD><CODE>pluginId</CODE> - plug-in which will provide a java quick fix processor for this error. Cannot be null.<DD><CODE>errorId</CODE> - a plug-in provided error code which will be meaningful to the java quick fix processor. Cannot be null.</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printFixableError(java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
-printFixableError</H3>
-<PRE>
-protected void <B>printFixableError</B>(java.lang.String&nbsp;message,
-                                 java.lang.String&nbsp;pluginId,
-                                 java.lang.String&nbsp;errorId)</PRE>
-<DL>
-<DD>Print an error including the given arguments for use in quick-fixes.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>message</CODE> - message to display to the user<DD><CODE>pluginId</CODE> - plug-in which will provide a java quick fix processor for this error. Cannot be null.<DD><CODE>errorId</CODE> - a plug-in provided error code which will be meaningful to the java quick fix processor. Cannot be null.</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printFixableWarning(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
-printFixableWarning</H3>
-<PRE>
-protected void <B>printFixableWarning</B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                                   java.lang.String&nbsp;message,
-                                   java.lang.String&nbsp;pluginId,
-                                   java.lang.String&nbsp;errorId)</PRE>
-<DL>
-<DD>Print a warning including the given arguments for use in quick-fixes.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>position</CODE> - position of the warning<DD><CODE>message</CODE> - message to display to the user<DD><CODE>pluginId</CODE> - plug-in which will provide a java quick fix processor for this error. Cannot be null.<DD><CODE>errorId</CODE> - a plug-in provided error code which will be meaningful to the java quick fix processor. Cannot be null.</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printFixableWarning(java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
-printFixableWarning</H3>
-<PRE>
-protected void <B>printFixableWarning</B>(java.lang.String&nbsp;message,
-                                   java.lang.String&nbsp;pluginId,
-                                   java.lang.String&nbsp;errorId)</PRE>
-<DL>
-<DD>Print a warning including the given arguments for use in quick-fixes.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>message</CODE> - message to display to the user<DD><CODE>pluginId</CODE> - plug-in which will provide a java quick fix processor for this error. Cannot be null.<DD><CODE>errorId</CODE> - a plug-in provided error code which will be meaningful to the java quick fix processor. Cannot be null.</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printFixableNotice(com.sun.mirror.util.SourcePosition, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
-printFixableNotice</H3>
-<PRE>
-protected void <B>printFixableNotice</B>(com.sun.mirror.util.SourcePosition&nbsp;position,
-                                  java.lang.String&nbsp;message,
-                                  java.lang.String&nbsp;pluginId,
-                                  java.lang.String&nbsp;errorId)</PRE>
-<DL>
-<DD>Print a notice including the given arguments for use in quick-fixes.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>position</CODE> - position of the notice<DD><CODE>message</CODE> - message to display to the user<DD><CODE>pluginId</CODE> - plug-in which will provide a java quick fix processor for this error. Cannot be null.<DD><CODE>errorId</CODE> - a plug-in provided error code which will be meaningful to the java quick fix processor. Cannot be null.</DL>
-</DD>
-</DL>
-<HR>
-
-<A NAME="printFixableNotice(java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
-printFixableNotice</H3>
-<PRE>
-protected void <B>printFixableNotice</B>(java.lang.String&nbsp;message,
-                                  java.lang.String&nbsp;pluginId,
-                                  java.lang.String&nbsp;errorId)</PRE>
-<DL>
-<DD>Print a notice including the given arguments for use in quick-fixes.
-<P>
-<DD><DL>
-</DL>
-</DD>
-<DD><DL>
-<DT><B>Parameters:</B><DD><CODE>message</CODE> - message to display to the user<DD><CODE>pluginId</CODE> - plug-in which will provide a java quick fix processor for this error. Cannot be null.<DD><CODE>errorId</CODE> - a plug-in provided error code which will be meaningful to the java quick fix processor. Cannot be null.</DL>
-</DD>
-</DL>
 <!-- ========= END OF CLASS DATA ========= -->
 <HR>
 
@@ -670,9 +249,9 @@
 </TR>
 <TR>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
+  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
 <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
-DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
+DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
 </TR>
 </TABLE>
 <A NAME="skip-navbar_bottom"></A>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/class-use/AbstractAnnotationProcessor.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/class-use/AbstractAnnotationProcessor.html
index 94d8da8..144062c 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/class-use/AbstractAnnotationProcessor.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/class-use/AbstractAnnotationProcessor.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.annotations.core.processor.AbstractAnnotationProcessor
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/processor/\class-useAbstractAnnotationProcessor.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/processor//class-useAbstractAnnotationProcessor.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AbstractAnnotationProcessor.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -118,7 +118,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/processor/\class-useAbstractAnnotationProcessor.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/processor//class-useAbstractAnnotationProcessor.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AbstractAnnotationProcessor.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-frame.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-frame.html
index eac6e70..a46f24b 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-frame.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-frame.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.processor
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-summary.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-summary.html
index 0ec02f1..17af2b7 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-summary.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-summary.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.processor
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-tree.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-tree.html
index b55e2a3..6eea382 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-tree.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-tree.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.processor Class Hierarchy
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-use.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-use.html
index e23e8ee..a8d8fc5 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-use.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/processor/package-use.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Package org.eclipse.jst.ws.annotations.core.processor
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html
index baf1580..8160777 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:49 IST 2011 -->
 <TITLE>
 AnnotationUtils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -557,7 +557,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/class-use/AnnotationUtils.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/class-use/AnnotationUtils.html
index b9f1425..805bea8 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/class-use/AnnotationUtils.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/class-use/AnnotationUtils.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.annotations.core.utils.AnnotationUtils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/utils/\class-useAnnotationUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/utils//class-useAnnotationUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationUtils.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -118,7 +118,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/utils/\class-useAnnotationUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/annotations/core/utils//class-useAnnotationUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="AnnotationUtils.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-frame.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-frame.html
index dcd30c0..e82a791 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-frame.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-frame.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.utils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-summary.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-summary.html
index 7f45545..0d3a823 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-summary.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-summary.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.utils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-tree.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-tree.html
index 67b9072..01cf652 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-tree.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-tree.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.annotations.core.utils Class Hierarchy
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-use.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-use.html
index 11f446c..fde7d4a 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-use.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/annotations/core/utils/package-use.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Package org.eclipse.jst.ws.annotations.core.utils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html
index 3d838b6..9ad6a87 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 JDTUtils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -283,7 +283,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html
index b928648..36509b6 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 WSDLUtils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -224,7 +224,7 @@
 <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
+<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -349,7 +349,7 @@
  path appended with the 'WSDL' directory. The returned resource may not exist.
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>projectName</CODE> - the name of the web project
+<DT><B>Parameters:</B><DD><CODE>project</CODE> - the web project
 <DT><B>Returns:</B><DD>the wsdl folder</DL>
 </DD>
 </DL>
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/JDTUtils.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/JDTUtils.html
index de51bff..d85c328 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/JDTUtils.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/JDTUtils.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.jaxws.core.utils.JDTUtils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils/\class-useJDTUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils//class-useJDTUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="JDTUtils.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -118,7 +118,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils/\class-useJDTUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils//class-useJDTUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="JDTUtils.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/WSDLUtils.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/WSDLUtils.html
index 6b3790d..a3e931c 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/WSDLUtils.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/class-use/WSDLUtils.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Class org.eclipse.jst.ws.jaxws.core.utils.WSDLUtils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
 
@@ -58,7 +58,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils/\class-useWSDLUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils//class-useWSDLUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="WSDLUtils.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
@@ -118,7 +118,7 @@
 &nbsp;PREV&nbsp;
 &nbsp;NEXT</FONT></TD>
 <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils/\class-useWSDLUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+  <A HREF="../../../../../../../../index.html?org/eclipse/jst/ws/jaxws/core/utils//class-useWSDLUtils.html" target="_top"><B>FRAMES</B></A>  &nbsp;
 &nbsp;<A HREF="WSDLUtils.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
 &nbsp;<SCRIPT type="text/javascript">
   <!--
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-frame.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-frame.html
index 4cd11a5..21b6fbe 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-frame.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-frame.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.jaxws.core.utils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-summary.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-summary.html
index 5593879..c180ba0 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-summary.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-summary.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.jaxws.core.utils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-tree.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-tree.html
index 9498c0e..fb9c2ba 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-tree.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-tree.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 org.eclipse.jst.ws.jaxws.core.utils Class Hierarchy
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-use.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-use.html
index 4bb3526..5214aa3 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-use.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/org/eclipse/jst/ws/jaxws/core/utils/package-use.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 10:57:50 IST 2011 -->
 <TITLE>
 Uses of Package org.eclipse.jst.ws.jaxws.core.utils
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-frame.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-frame.html
index 6e633c8..c0ca28f 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-frame.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-frame.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:22 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Overview List
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-summary.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-summary.html
index be498c4..1a10d70 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-summary.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-summary.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Overview
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
diff --git a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-tree.html b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-tree.html
index a837a8e..c4c0a00 100644
--- a/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-tree.html
+++ b/docs/org.eclipse.jst.ws.jaxws.doc.isv/reference/api/overview-tree.html
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_14) on Wed Apr 07 07:46:23 BST 2010 -->
+<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 03 11:19:14 IST 2011 -->
 <TITLE>
 Class Hierarchy
 </TITLE>
 
-<META NAME="date" CONTENT="2010-04-07">
+<META NAME="date" CONTENT="2011-04-03">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
@@ -95,10 +95,7 @@
 <LI TYPE="circle">org.eclipse.jst.ws.annotations.core.initialization.<A HREF="org/eclipse/jst/ws/annotations/core/initialization/AnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization"><B>AnnotationAttributeInitializer</B></A> (implements org.eclipse.jst.ws.annotations.core.initialization.<A HREF="org/eclipse/jst/ws/annotations/core/initialization/IAnnotationAttributeInitializer.html" title="interface in org.eclipse.jst.ws.annotations.core.initialization">IAnnotationAttributeInitializer</A>)
 <UL>
 <LI TYPE="circle">org.eclipse.jst.ws.annotations.core.initialization.<A HREF="org/eclipse/jst/ws/annotations/core/initialization/DefaultsAnnotationAttributeInitializer.html" title="class in org.eclipse.jst.ws.annotations.core.initialization"><B>DefaultsAnnotationAttributeInitializer</B></A></UL>
-<LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationDefinition</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCore</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsManager</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.utils.<A HREF="org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils"><B>AnnotationUtils</B></A><LI TYPE="circle">org.eclipse.jst.ws.jaxws.core.utils.<A HREF="org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>JDTUtils</B></A><LI TYPE="circle">org.eclipse.core.runtime.Plugin (implements org.osgi.framework.BundleActivator)
-<UL>
-<LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCorePlugin.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCorePlugin</B></A></UL>
-<LI TYPE="circle">org.eclipse.jst.ws.jaxws.core.utils.<A HREF="org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>WSDLUtils</B></A></UL>
+<LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationDefinition.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationDefinition</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsCore.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsCore</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.<A HREF="org/eclipse/jst/ws/annotations/core/AnnotationsManager.html" title="class in org.eclipse.jst.ws.annotations.core"><B>AnnotationsManager</B></A><LI TYPE="circle">org.eclipse.jst.ws.annotations.core.utils.<A HREF="org/eclipse/jst/ws/annotations/core/utils/AnnotationUtils.html" title="class in org.eclipse.jst.ws.annotations.core.utils"><B>AnnotationUtils</B></A><LI TYPE="circle">org.eclipse.jst.ws.jaxws.core.utils.<A HREF="org/eclipse/jst/ws/jaxws/core/utils/JDTUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>JDTUtils</B></A><LI TYPE="circle">org.eclipse.jst.ws.jaxws.core.utils.<A HREF="org/eclipse/jst/ws/jaxws/core/utils/WSDLUtils.html" title="class in org.eclipse.jst.ws.jaxws.core.utils"><B>WSDLUtils</B></A></UL>
 </UL>
 <H2>
 Interface Hierarchy
diff --git a/tests/org.eclipse.jst.ws.jaxb.core.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.jst.ws.jaxb.core.tests/META-INF/MANIFEST.MF
index 3ce1f59..34146e9 100644
--- a/tests/org.eclipse.jst.ws.jaxb.core.tests/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.jst.ws.jaxb.core.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jst.ws.jaxb.core.tests
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.0.100.qualifier
 Bundle-Vendor: %pluginProvider
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Require-Bundle: org.junit;bundle-version="3.8.0",
diff --git a/tests/org.eclipse.jst.ws.jaxws.core.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.jst.ws.jaxws.core.tests/META-INF/MANIFEST.MF
index 504792c..3a99a8d 100644
--- a/tests/org.eclipse.jst.ws.jaxws.core.tests/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.jst.ws.jaxws.core.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jst.ws.jaxws.core.tests
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.0.100.qualifier
 Bundle-Vendor: %pluginProvider
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Require-Bundle: org.junit;bundle-version="3.8.0",