All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.ui.rsyntaxtextarea.spell.SpellingErrorAction Maven / Gradle / Ivy

Go to download

A simple spell checker add-on for RSyntaxTextArea. It will spell-check comments in source code, or the entire file if you are editing plain text. Spelling errors are squiggle-underlined with the color of your choice, and tooltips are available offering any spelling suggestions.

The newest version!
/*
 * This library is distributed under the LGPL.  See the included
 * LICENSE.md file for details.
 */
package org.fife.ui.rsyntaxtextarea.spell;

/**
 * The actions someone can take with a misspelled word.
 */
public enum SpellingErrorAction {

    /**
     * Add the word to the user's dictionary.
     */
    ADD,

    /**
     * Replace the misspelled word with a suggested word.
     */
    REPLACE,

    /**
     * Ignore the misspelled word.
     */
    IGNORE
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy