@coverage dart.server.generated.types
Definition at line 30 of file ExtractLocalVariableOptions.java.
◆ ExtractLocalVariableOptions()
org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.ExtractLocalVariableOptions |
( |
String |
name, |
|
|
boolean |
extractAll |
|
) |
| |
|
inline |
◆ equals()
boolean org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.equals |
( |
Object |
obj | ) |
|
|
inline |
◆ extractAll()
boolean org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.extractAll |
( |
| ) |
|
|
inline |
True if all occurrences of the expression within the scope in which the variable will be defined should be replaced by a reference to the local variable. The expression used to initiate the refactoring will always be replaced.
Definition at line 90 of file ExtractLocalVariableOptions.java.
90 {
91 return extractAll;
92 }
◆ fromJson()
◆ fromJsonArray()
Definition at line 73 of file ExtractLocalVariableOptions.java.
73 {
74 if (jsonArray == null) {
76 }
77 ArrayList<ExtractLocalVariableOptions> list = new ArrayList<ExtractLocalVariableOptions>(jsonArray.size());
78 Iterator<JsonElement> iterator = jsonArray.iterator();
79 while (iterator.hasNext()) {
80 list.add(
fromJson(iterator.next().getAsJsonObject()));
81 }
82 return list;
83 }
◆ getName()
String org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.getName |
( |
| ) |
|
|
inline |
◆ hashCode()
int org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.hashCode |
( |
| ) |
|
|
inline |
◆ setExtractAll()
void org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.setExtractAll |
( |
boolean |
extractAll | ) |
|
|
inline |
True if all occurrences of the expression within the scope in which the variable will be defined should be replaced by a reference to the local variable. The expression used to initiate the refactoring will always be replaced.
Definition at line 114 of file ExtractLocalVariableOptions.java.
114 {
115 this.extractAll = extractAll;
116 }
◆ setName()
void org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.setName |
( |
String |
name | ) |
|
|
inline |
◆ toJson()
JsonObject org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.toJson |
( |
| ) |
|
|
inline |
◆ toString()
String org.dartlang.analysis.server.protocol.ExtractLocalVariableOptions.toString |
( |
| ) |
|
|
inline |
◆ EMPTY_ARRAY
◆ EMPTY_LIST
The documentation for this class was generated from the following file: