Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui/src/org/eclipse/osee/framework/core/dsl/ui/quickfix/OseeDslQuickfixProvider.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui/src/org/eclipse/osee/framework/core/dsl/ui/quickfix/OseeDslQuickfixProvider.java21
1 files changed, 10 insertions, 11 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui/src/org/eclipse/osee/framework/core/dsl/ui/quickfix/OseeDslQuickfixProvider.java b/plugins/org.eclipse.osee.framework.core.dsl.ui/src/org/eclipse/osee/framework/core/dsl/ui/quickfix/OseeDslQuickfixProvider.java
index bf9d0b97cdc..0ff87266554 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui/src/org/eclipse/osee/framework/core/dsl/ui/quickfix/OseeDslQuickfixProvider.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui/src/org/eclipse/osee/framework/core/dsl/ui/quickfix/OseeDslQuickfixProvider.java
@@ -1,19 +1,18 @@
-
package org.eclipse.osee.framework.core.dsl.ui.quickfix;
import org.eclipse.xtext.ui.editor.quickfix.DefaultQuickfixProvider;
public class OseeDslQuickfixProvider extends DefaultQuickfixProvider {
-// @Fix(MyJavaValidator.INVALID_NAME)
-// public void capitalizeName(final Issue issue, IssueResolutionAcceptor acceptor) {
-// acceptor.accept(issue, "Capitalize name", "Capitalize the name.", "upcase.png", new IModification() {
-// public void apply(IModificationContext context) throws BadLocationException {
-// IXtextDocument xtextDocument = context.getXtextDocument();
-// String firstLetter = xtextDocument.get(issue.getOffset(), 1);
-// xtextDocument.replace(issue.getOffset(), 1, firstLetter.toUpperCase());
-// }
-// });
-// }
+ // @Fix(MyJavaValidator.INVALID_NAME)
+ // public void capitalizeName(final Issue issue, IssueResolutionAcceptor acceptor) {
+ // acceptor.accept(issue, "Capitalize name", "Capitalize the name.", "upcase.png", new IModification() {
+ // public void apply(IModificationContext context) throws BadLocationException {
+ // IXtextDocument xtextDocument = context.getXtextDocument();
+ // String firstLetter = xtextDocument.get(issue.getOffset(), 1);
+ // xtextDocument.replace(issue.getOffset(), 1, firstLetter.toUpperCase());
+ // }
+ // });
+ // }
}

Back to the top