Merge "Bug 515454 - Add support for async code completion"
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentassist/StructuredContentAssistant.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentassist/StructuredContentAssistant.java
index 8d124ce..b955c6b 100644
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentassist/StructuredContentAssistant.java
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentassist/StructuredContentAssistant.java
@@ -40,6 +40,17 @@
 	 * <p>Construct the assistant</p>
 	 */
 	public StructuredContentAssistant() {
+		this(false);
+	}
+
+	/**
+	 * 
+	 * @param asynchronous
+	 *            <true> if this content assistant should present the proposals
+	 *            asynchronously, <code>false</code> otherwise
+	 */
+	public StructuredContentAssistant(boolean asynchronous) {
+		super(asynchronous);
 		this.fIsInitalized = false;
 		this.fReleasableProcessors = new ArrayList();
 	}