Home
last modified time | relevance | path

Searched refs:getPropertyUtils (Results 1 – 12 of 12) sorted by relevance

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DPropertyUtilsSharingTest.java29 assertSame(yaml1.constructor.getPropertyUtils(), yaml1.representer.getPropertyUtils()); in testYamlDefaults()
32 assertSame(yaml2.constructor.getPropertyUtils(), yaml2.representer.getPropertyUtils()); in testYamlDefaults()
35 assertSame(yaml3.constructor.getPropertyUtils(), yaml3.representer.getPropertyUtils()); in testYamlDefaults()
43 assertSame(pu, yaml.constructor.getPropertyUtils()); in testYamlConstructorWithPropertyUtils()
44 assertSame(pu, yaml.representer.getPropertyUtils()); in testYamlConstructorWithPropertyUtils()
52 assertSame(pu, yaml.constructor.getPropertyUtils()); in testYamlRepresenterWithPropertyUtils()
53 assertSame(pu, yaml.representer.getPropertyUtils()); in testYamlRepresenterWithPropertyUtils()
65 assertSame(pu_c, yaml.constructor.getPropertyUtils()); in testYamlConstructorANDRepresenterWithPropertyUtils()
66 assertSame(pu_r, yaml.representer.getPropertyUtils()); in testYamlConstructorANDRepresenterWithPropertyUtils()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DYaml.java155 constructor.setPropertyUtils(representer.getPropertyUtils()); in Yaml()
157 representer.setPropertyUtils(constructor.getPropertyUtils()); in Yaml()
162 representer.getPropertyUtils().setAllowReadOnlyProperties( in Yaml()
657 constructor.getPropertyUtils().setBeanAccess(beanAccess); in setBeanAccess()
658 representer.getPropertyUtils().setBeanAccess(beanAccess); in setBeanAccess()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue154/
DMissingPropertyTest.java62 representer.getPropertyUtils().setSkipMissingProperties(true); in testSkipMissingProperties()
77 representer.getPropertyUtils().setSkipMissingProperties(false); in testNoSkipMissingProperties()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructor.java78 Property property = getPropertyUtils().getProperty(bean.getClass(), key); in setProperties()
204 Property property = getPropertyUtils().getProperty(bean.getClass(), in applySequence()
219 Set<Property> properties = getPropertyUtils().getProperties(bean); in getSequencePropertyName()
/external/snakeyaml/src/patches/android/
DConstructor.patch22 return getPropertyUtils().getProperty(type, name);
DCompactConstructor.patch20 Set<Property> properties = getPropertyUtils().getProperties(bean);
DRepresenter.patch42 return getPropertyUtils().getProperties(type);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue55/
DYamlFieldAccessCollectionTest.java72 representer.getPropertyUtils().setBeanAccess(BeanAccess.FIELD); in constructYamlDumper()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
DBaseRepresenter.java192 public final PropertyUtils getPropertyUtils() { in getPropertyUtils() method in BaseRepresenter
DRepresenter.java246 return getPropertyUtils().getProperties(type); in getProperties()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
DBaseConstructor.java422 public final PropertyUtils getPropertyUtils() { in getPropertyUtils() method in BaseConstructor
DConstructor.java323 return getPropertyUtils().getProperty(type, name); in getProperty()