Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
FlutterWidgetPropertyEditorKind.java
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
3 * for details. All rights reserved. Use of this source code is governed by a
4 * BSD-style license that can be found in the LICENSE file.
5 *
6 * This file has been automatically generated. Please do not edit it manually.
7 * To regenerate the file, use the script "pkg/analysis_server/tool/spec/generate_files".
8 */
9package org.dartlang.analysis.server.protocol;
10
11/**
12 * An enumeration of the kinds of property editors.
13 *
14 * @coverage dart.server.generated.types
15 */
17
18 /**
19 * The editor for a property of type bool.
20 */
21 public static final String BOOL = "BOOL";
22
23 /**
24 * The editor for a property of the type double.
25 */
26 public static final String DOUBLE = "DOUBLE";
27
28 /**
29 * The editor for choosing an item of an enumeration, see the enumItems field of
30 * FlutterWidgetPropertyEditor.
31 */
32 public static final String ENUM = "ENUM";
33
34 /**
35 * The editor for either choosing a pre-defined item from a list of provided static field
36 * references (like ENUM), or specifying a free-form expression.
37 */
38 public static final String ENUM_LIKE = "ENUM_LIKE";
39
40 /**
41 * The editor for a property of type int.
42 */
43 public static final String INT = "INT";
44
45 /**
46 * The editor for a property of the type String.
47 */
48 public static final String STRING = "STRING";
49
50}
int BOOL
int INT