summaryrefslogtreecommitdiffstats
path: root/configgen/src/test/resources/allfeatures.reference
diff options
context:
space:
mode:
Diffstat (limited to 'configgen/src/test/resources/allfeatures.reference')
-rw-r--r--configgen/src/test/resources/allfeatures.reference56
1 files changed, 56 insertions, 0 deletions
diff --git a/configgen/src/test/resources/allfeatures.reference b/configgen/src/test/resources/allfeatures.reference
index 08d8aa122c9..7698ea6727c 100644
--- a/configgen/src/test/resources/allfeatures.reference
+++ b/configgen/src/test/resources/allfeatures.reference
@@ -565,11 +565,33 @@ public final class AllfeaturesConfig extends ConfigInstance {
basic_struct = __builder;
return this;
}
+ /**
+ * Make a new builder and run the supplied function on it before adding it to the list
+ * @param __func lambda that modifies the given builder
+ * @return this builder
+ */
+ public Builder basic_struct(java.util.function.Consumer<Basic_struct.Builder> __func) {
+ Basic_struct.Builder __inner = new Basic_struct.Builder();
+ __func.accept(__inner);
+ basic_struct = __inner;
+ return this;
+ }
public Builder struct_of_struct(Struct_of_struct.Builder __builder) {
struct_of_struct = __builder;
return this;
}
+ /**
+ * Make a new builder and run the supplied function on it before adding it to the list
+ * @param __func lambda that modifies the given builder
+ * @return this builder
+ */
+ public Builder struct_of_struct(java.util.function.Consumer<Struct_of_struct.Builder> __func) {
+ Struct_of_struct.Builder __inner = new Struct_of_struct.Builder();
+ __func.accept(__inner);
+ struct_of_struct = __inner;
+ return this;
+ }
/**
* Add the given builder to this builder's list of MyArray builders
@@ -613,6 +635,18 @@ public final class AllfeaturesConfig extends ConfigInstance {
return this;
}
+ /**
+ * Make a new builder and run the supplied function on it before using it as the value
+ * @param __func lambda that modifies the given builder
+ * @return this builder
+ */
+ public Builder myMap(String __key, java.util.function.Consumer<MyMap.Builder> __func) {
+ MyMap.Builder __inner = new MyMap.Builder();
+ __func.accept(__inner);
+ myMap.put(__key, __inner);
+ return this;
+ }
+
private boolean _applyOnRestart = false;
@java.lang.Override
@@ -1317,11 +1351,33 @@ public final class AllfeaturesConfig extends ConfigInstance {
inner0 = __builder;
return this;
}
+ /**
+ * Make a new builder and run the supplied function on it before adding it to the list
+ * @param __func lambda that modifies the given builder
+ * @return this builder
+ */
+ public Builder inner0(java.util.function.Consumer<Inner0.Builder> __func) {
+ Inner0.Builder __inner = new Inner0.Builder();
+ __func.accept(__inner);
+ inner0 = __inner;
+ return this;
+ }
public Builder inner1(Inner1.Builder __builder) {
inner1 = __builder;
return this;
}
+ /**
+ * Make a new builder and run the supplied function on it before adding it to the list
+ * @param __func lambda that modifies the given builder
+ * @return this builder
+ */
+ public Builder inner1(java.util.function.Consumer<Inner1.Builder> __func) {
+ Inner1.Builder __inner = new Inner1.Builder();
+ __func.accept(__inner);
+ inner1 = __inner;
+ return this;
+ }
public Struct_of_struct build() {
return new Struct_of_struct(this);