OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allowReadOnlyProperties
(Results
1 - 2
of
2
) sorted by null
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DumperOptions.java
164
private boolean
allowReadOnlyProperties
= false;
370
return
allowReadOnlyProperties
;
378
* @param
allowReadOnlyProperties
381
public void setAllowReadOnlyProperties(boolean
allowReadOnlyProperties
) {
382
this.
allowReadOnlyProperties
=
allowReadOnlyProperties
;
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
PropertyUtils.java
38
private boolean
allowReadOnlyProperties
= false;
112
if (property.isReadable() && (
allowReadOnlyProperties
|| property.isWritable())) {
146
public void setAllowReadOnlyProperties(boolean
allowReadOnlyProperties
) {
147
if (this.
allowReadOnlyProperties
!=
allowReadOnlyProperties
) {
148
this.
allowReadOnlyProperties
=
allowReadOnlyProperties
;
Completed in 38 milliseconds