]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/text/spelling/engine/SpellEvent.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / ui / org / eclipse / jdt / internal / ui / text / spelling / engine / SpellEvent.java
diff --git a/case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/text/spelling/engine/SpellEvent.java b/case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/text/spelling/engine/SpellEvent.java
new file mode 100644 (file)
index 0000000..f0dc2ce
--- /dev/null
@@ -0,0 +1,109 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 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
+ *******************************************************************************/
+
+package org.eclipse.jdt.internal.ui.text.spelling.engine;
+
+import java.util.Set;
+
+/**
+ * Spell event fired for words detected by a spell check iterator.
+ *
+ * @since 3.0
+ */
+public class SpellEvent implements ISpellEvent {
+
+       /** The begin index of the word in the spell checkable medium */
+       private final int fBegin;
+
+       /** The spell checker that causes the event */
+       private final ISpellChecker fChecker;
+
+       /** The end index of the word in the spell checkable medium */
+       private final int fEnd;
+
+       /** Was the word found in the dictionary? */
+       private final boolean fMatch;
+
+       /** Does the word start a new sentence? */
+       private final boolean fSentence;
+
+       /** The word that causes the spell event */
+       private final String fWord;
+
+       /**
+        * Creates a new spell event.
+        *
+        * @param checker
+        *                   The spell checker that causes the event
+        * @param word
+        *                   The word that causes the event
+        * @param begin
+        *                   The begin index of the word in the spell checkable medium
+        * @param end
+        *                   The end index of the word in the spell checkable medium
+        * @param sentence
+        *                   <code>true</code> iff the word starts a new sentence,
+        *                   <code>false</code> otherwise
+        * @param match
+        *                   <code>true</code> iff the word was found in the dictionary,
+        *                   <code>false</code> otherwise
+        */
+       protected SpellEvent(final ISpellChecker checker, final String word, final int begin, final int end, final boolean sentence, final boolean match) {
+               fChecker= checker;
+               fEnd= end;
+               fBegin= begin;
+               fWord= word;
+               fSentence= sentence;
+               fMatch= match;
+       }
+
+       /*
+        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellEvent#getBegin()
+        */
+       public final int getBegin() {
+               return fBegin;
+       }
+
+       /*
+        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellEvent#getEnd()
+        */
+       public final int getEnd() {
+               return fEnd;
+       }
+
+       /*
+        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellEvent#getProposals()
+        */
+       public final Set<RankedWordProposal> getProposals() {
+               return fChecker.getProposals(fWord, fSentence);
+       }
+
+       /*
+        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellEvent#getWord()
+        */
+       public final String getWord() {
+               return fWord;
+       }
+
+       /*
+        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellEvent#isMatch()
+        */
+       public final boolean isMatch() {
+               return fMatch;
+       }
+
+       /*
+        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellEvent#isStart()
+        */
+       public final boolean isStart() {
+               return fSentence;
+       }
+}