1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / spelling / ChangeCaseProposal.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/ChangeCaseProposal.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/ChangeCaseProposal.java
new file mode 100644 (file)
index 0000000..57fde9b
--- /dev/null
@@ -0,0 +1,55 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+package net.sourceforge.phpdt.internal.ui.text.spelling;
+
+import java.util.Locale;
+
+import net.sourceforge.phpdt.internal.ui.PHPUIMessages;
+import net.sourceforge.phpdt.internal.ui.text.java.IInvocationContext;
+
+/**
+ * Proposal to change the letter case of a word.
+ * 
+ * @since 3.0
+ */
+public class ChangeCaseProposal extends WordCorrectionProposal {
+
+       /**
+        * Creates a new change case proposal.
+        * 
+        * @param arguments
+        *            The problem arguments associated with the spelling problem
+        * @param offset
+        *            The offset in the document where to apply the proposal
+        * @param length
+        *            The lenght in the document to apply the proposal
+        * @param context
+        *            The invocation context for this proposal
+        * @param locale
+        *            The locale to use for the case change
+        */
+       public ChangeCaseProposal(final String[] arguments, final int offset,
+                       final int length, final IInvocationContext context,
+                       final Locale locale) {
+               super(Character.isLowerCase(arguments[0].charAt(0)) ? Character
+                               .toUpperCase(arguments[0].charAt(0))
+                               + arguments[0].substring(1) : arguments[0], arguments, offset,
+                               length, context, Integer.MAX_VALUE);
+       }
+
+       /*
+        * @see org.eclipse.jface.text.contentassist.ICompletionProposal#getDisplayString()
+        */
+       public String getDisplayString() {
+               return PHPUIMessages.getString("Spelling.case.label"); //$NON-NLS-1$
+       }
+}