HomeSort by relevance Sort by last modified time
    Searched defs:defaultFlowStyle (Results 1 - 3 of 3) sorted by null

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
BaseRepresenter.java 50 protected FlowStyle defaultFlowStyle = FlowStyle.AUTO;
140 if (defaultFlowStyle != FlowStyle.AUTO) {
141 node.setFlowStyle(defaultFlowStyle.getStyleBoolean());
166 if (defaultFlowStyle != FlowStyle.AUTO) {
167 node.setFlowStyle(defaultFlowStyle.getStyleBoolean());
179 public void setDefaultFlowStyle(FlowStyle defaultFlowStyle) {
180 this.defaultFlowStyle = defaultFlowStyle;
184 return this.defaultFlowStyle;
Representer.java 98 if (defaultFlowStyle != FlowStyle.AUTO) {
99 node.setFlowStyle(defaultFlowStyle.getStyleBoolean());
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DumperOptions.java 161 private FlowStyle defaultFlowStyle = FlowStyle.AUTO;
315 public void setDefaultFlowStyle(FlowStyle defaultFlowStyle) {
316 if (defaultFlowStyle == null) {
319 this.defaultFlowStyle = defaultFlowStyle;
323 return defaultFlowStyle;

Completed in 4461 milliseconds