Merge pull request #78 from eclipse/cd_bug435441

[435441] Added JavaDoc to CheckType Enum
This commit is contained in:
Christian Dietrich 2016-08-12 13:41:09 +02:00 committed by GitHub
commit 076229c563

View file

@ -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;
}