Package org.eclipse.wst.xml.ui.internal.correction

Examples of org.eclipse.wst.xml.ui.internal.correction.RemoveUnknownElementQuickFixProposal


        break;
      case ProblemIDsXML.NamespaceInPI :
        proposals.add(new CompletionProposal("", invocationContext.getOffset(), invocationContext.getLength(), 0, getImage(), XMLUIMessages.QuickFixProcessorXML_10, null, "")); //$NON-NLS-1$ //$NON-NLS-2$
        break;
      case ProblemIDsXML.UnknownElement :
        proposals.add(new RemoveUnknownElementQuickFixProposal(fAdditionalFixInfo, getImage(), XMLUIMessages.QuickFixProcessorXML_11));
        proposals.add(new RenameInFileQuickAssistProposal());
        break;
      case ProblemIDsXML.UnknownAttr :
        proposals.add(new CompletionProposal("", invocationContext.getOffset(), invocationContext.getLength(), 0, getImage(), XMLUIMessages.QuickFixProcessorXML_7, null, "")); //$NON-NLS-1$ //$NON-NLS-2$
        proposals.add(new RenameInFileQuickAssistProposal());
View Full Code Here

TOP

Related Classes of org.eclipse.wst.xml.ui.internal.correction.RemoveUnknownElementQuickFixProposal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.