@kieler/klighd-core
Version:
Core KLighD diagram visualization with Sprotty
55 lines • 2.1 kB
JavaScript
;
/*
* KIELER - Kiel Integrated Environment for Layout Eclipse RichClient
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2018-2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Type = exports.TransformationOptionType = void 0;
/**
* The different types a SynthesisOption can have.
*/
var TransformationOptionType;
(function (TransformationOptionType) {
TransformationOptionType[TransformationOptionType["CHECK"] = 0] = "CHECK";
TransformationOptionType[TransformationOptionType["CHOICE"] = 1] = "CHOICE";
TransformationOptionType[TransformationOptionType["RANGE"] = 2] = "RANGE";
TransformationOptionType[TransformationOptionType["TEXT"] = 3] = "TEXT";
TransformationOptionType[TransformationOptionType["SEPARATOR"] = 4] = "SEPARATOR";
TransformationOptionType[TransformationOptionType["CATEGORY"] = 5] = "CATEGORY";
})(TransformationOptionType || (exports.TransformationOptionType = TransformationOptionType = {}));
/**
* Enumeration of data types for layout options.
* From java class org.eclipse.elk.core.data.Type
*/
var Type;
(function (Type) {
/** undefined type. */
Type[Type["UNDEFINED"] = 0] = "UNDEFINED";
/** boolean type. */
Type[Type["BOOLEAN"] = 1] = "BOOLEAN";
/** integer type. */
Type[Type["INT"] = 2] = "INT";
/** string type. */
Type[Type["STRING"] = 3] = "STRING";
/** double type. */
Type[Type["DOUBLE"] = 4] = "DOUBLE";
/** enumeration type. */
Type[Type["ENUM"] = 5] = "ENUM";
/** enumeration set type. */
Type[Type["ENUMSET"] = 6] = "ENUMSET";
/** {@link IDataObject} type. */
Type[Type["OBJECT"] = 7] = "OBJECT";
})(Type || (exports.Type = Type = {}));
//# sourceMappingURL=option-models.js.map