Home
last modified time | relevance | path

Searched refs:allowReadOnlyProperties (Results 1 – 3 of 3) sorted by relevance

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
DPropertyUtils.java38 private boolean allowReadOnlyProperties = false; field in PropertyUtils
112 if (property.isReadable() && (allowReadOnlyProperties || property.isWritable())) { in createPropertySet()
146 public void setAllowReadOnlyProperties(boolean allowReadOnlyProperties) { in setAllowReadOnlyProperties() argument
147 if (this.allowReadOnlyProperties != allowReadOnlyProperties) { in setAllowReadOnlyProperties()
148 this.allowReadOnlyProperties = allowReadOnlyProperties; in setAllowReadOnlyProperties()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DDumperOptions.java164 private boolean allowReadOnlyProperties = false; field in DumperOptions
370 return allowReadOnlyProperties; in isAllowReadOnlyProperties()
381 public void setAllowReadOnlyProperties(boolean allowReadOnlyProperties) { in setAllowReadOnlyProperties() argument
382 this.allowReadOnlyProperties = allowReadOnlyProperties; in setAllowReadOnlyProperties()
/external/snakeyaml/src/patches/android/
DPropertyUtils.patch20 private boolean allowReadOnlyProperties = false;