blob: a34e22b8beb636716a6dfb5d5c2f75063c84da21 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsp.ui.internal.contentassist;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.jface.text.contentassist.ContentAssistant;
import org.eclipse.wst.html.ui.internal.contentassist.HTMLStructuredContentAssistProcessor;
import org.eclipse.wst.sse.ui.contentassist.StructuredContentAssistProcessor;
/**
* <p>Implementation of {@link StructuredContentAssistProcessor} for JSP documents</p>
*
* <p>Currently this implementation still uses the HTML preferences for auto
* activation characters, but in the future this should probably change</p>
*/
public class JSPStructuredContentAssistProcessor extends HTMLStructuredContentAssistProcessor {
/**
* <p>Constructor</p>
*
* @param assistant {@link ContentAssistant} to use
* @param partitionTypeID the partition type this processor is for
* @param viewer {@link ITextViewer} this processor is acting in
*/
public JSPStructuredContentAssistProcessor(ContentAssistant assistant,
String partitionTypeID, ITextViewer viewer) {
super(assistant, partitionTypeID, viewer);
}
}