From 0bc10cc56f010247a7a473af8e1b2d2782457a74 Mon Sep 17 00:00:00 2001 From: nitind Date: Wed, 2 Mar 2011 15:27:00 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'v201103021533'. --- .../XMLStructuredContentAssistProcessor.java | 110 --------------------- 1 file changed, 110 deletions(-) delete mode 100644 bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/contentassist/XMLStructuredContentAssistProcessor.java (limited to 'bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/contentassist/XMLStructuredContentAssistProcessor.java') diff --git a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/contentassist/XMLStructuredContentAssistProcessor.java b/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/contentassist/XMLStructuredContentAssistProcessor.java deleted file mode 100644 index 6588e5d0b2..0000000000 --- a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/contentassist/XMLStructuredContentAssistProcessor.java +++ /dev/null @@ -1,110 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2010, 2011 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 - * Jens Lukowski/Innoopract - initial renaming/restructuring - * - *******************************************************************************/ -package org.eclipse.wst.xml.ui.internal.contentassist; - -import org.eclipse.jface.preference.IPreferenceStore; -import org.eclipse.jface.text.ITextViewer; -import org.eclipse.jface.text.contentassist.ContentAssistant; -import org.eclipse.jface.text.contentassist.IContextInformationValidator; -import org.eclipse.jface.util.PropertyChangeEvent; -import org.eclipse.wst.sse.ui.contentassist.StructuredContentAssistProcessor; -import org.eclipse.wst.xml.ui.internal.XMLUIPlugin; -import org.eclipse.wst.xml.ui.internal.preferences.XMLUIPreferenceNames; - -/** - *

Implementation of {@link StructuredContentAssistProcessor} for XML documents

- * - *

This implementation will react to user preference changes for auto activation - * characters for XML pages

- * - * @see StructuredContentAssistProcessor - */ -public class XMLStructuredContentAssistProcessor extends StructuredContentAssistProcessor { - /** the auto activation characters for this processor, set by user preference */ - private char[] fCompletionProposalAutoActivationCharacters; - - /** the context information validator for this processor */ - private IContextInformationValidator fContextInformationValidator; - - /** - *

Constructor

- * - * @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 XMLStructuredContentAssistProcessor(ContentAssistant assistant, - String partitionTypeID, ITextViewer viewer) { - - super(assistant, partitionTypeID, viewer, XMLUIPlugin.getDefault().getPreferenceStore()); - getAutoActivationCharacterPreferences(); - updateAutoActivationDelay(); - } - - /** - * @see org.eclipse.wst.sse.ui.contentassist.StructuredContentAssistProcessor#getContextInformationValidator() - */ - public IContextInformationValidator getContextInformationValidator() { - if (this.fContextInformationValidator == null) { - this.fContextInformationValidator = new AttributeContextInformationPresenter(); - } - return this.fContextInformationValidator; - } - - /** - * @see org.eclipse.wst.sse.ui.contentassist.StructuredContentAssistProcessor#getCompletionProposalAutoActivationCharacters() - */ - public char[] getCompletionProposalAutoActivationCharacters() { - return super.getCompletionProposalAutoActivationCharacters() != null ? super.getCompletionProposalAutoActivationCharacters() : this.fCompletionProposalAutoActivationCharacters; - } - - /** - * @see org.eclipse.wst.sse.ui.contentassist.StructuredContentAssistProcessor#propertyChange( - * org.eclipse.jface.util.PropertyChangeEvent) - */ - public void propertyChange(PropertyChangeEvent event) { - if(event.getProperty().equals(XMLUIPreferenceNames.AUTO_PROPOSE) || - event.getProperty().equals(XMLUIPreferenceNames.AUTO_PROPOSE_CODE)) { - getAutoActivationCharacterPreferences(); - }else if (event.getProperty().equals(XMLUIPreferenceNames.AUTO_PROPOSE_DELAY)) { - updateAutoActivationDelay(); - } - } - - - - /** - *

Sets the auto activation delay in Content Assist

- */ - private void updateAutoActivationDelay() { - IPreferenceStore store = getPreferenceStore(); - boolean doAuto = store.getBoolean(XMLUIPreferenceNames.AUTO_PROPOSE); - if (doAuto) { - setAutoActivationDelay(store.getInt(XMLUIPreferenceNames.AUTO_PROPOSE_DELAY)); - } - - } - - - protected void getAutoActivationCharacterPreferences() { - String key = XMLUIPreferenceNames.AUTO_PROPOSE; - boolean doAuto = getPreferenceStore().getBoolean(key); - if (doAuto) { - key = XMLUIPreferenceNames.AUTO_PROPOSE_CODE; - fCompletionProposalAutoActivationCharacters = getPreferenceStore().getString(key).toCharArray(); - } - else { - fCompletionProposalAutoActivationCharacters = null; - } - } -} -- cgit v1.2.3