mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 16:28:56 +00:00
[435441] Added JavaDoc to CheckType Enum
Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
This commit is contained in:
parent
467ee9cf51
commit
625803b3c9
1 changed files with 5 additions and 0 deletions
|
@ -9,15 +9,20 @@
|
|||
package org.eclipse.xtext.validation;
|
||||
|
||||
/**
|
||||
* CheckType is used to determine when @{@link Check}-annotated validation Methods are executed.
|
||||
*
|
||||
* @author Sven Efftinge - Initial contribution and API
|
||||
*
|
||||
*/
|
||||
public enum CheckType {
|
||||
|
||||
/** Check is executed on editing, save/build and on request. */
|
||||
FAST,
|
||||
|
||||
/** Check is executed on save/build and request only. */
|
||||
NORMAL,
|
||||
|
||||
/** Check is executed on request (right click in the editor -> validate) only. */
|
||||
EXPENSIVE;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue