Skip to content

Package: RevealStepKind

RevealStepKind

nameinstructionbranchcomplexitylinemethod
static {...}
M: 0 C: 34
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 7
100%
M: 0 C: 1
100%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2019 Christian W. Damus and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Christian W. Damus - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emfforms.spi.core.services.reveal;
15:
16: /**
17: * Enumeration of kinds of {@link RevealStep}.
18: *
19: * @since 1.22
20: * @see RevealStep#getType()
21: */
22: public enum RevealStepKind {
23:         /** A terminal step: it reveals the object. */
24:         TERMINAL,
25:         /** An intermediate step: there is more to reveal within a nested scope. */
26:         INTERMEDIATE,
27:         /** A failed step: the object is not there. */
28:         FAILED;
29: }