File tree 2 files changed +16
-0
lines changed
src/main/java/ch/usi/si/seart/treesitter
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,14 @@ public Builder toBuilder() {
87
87
return builder ().language (getLanguage ()).timeout (getTimeout ());
88
88
}
89
89
90
+ /**
91
+ * Facilitates the construction of Parser instances.
92
+ * It allows for the step-by-step creation of these objects
93
+ * by providing methods for setting individual attributes.
94
+ * Input validations are performed at each build step.
95
+ *
96
+ * @since 1.7.0
97
+ */
90
98
@ FieldDefaults (level = AccessLevel .PRIVATE )
91
99
@ NoArgsConstructor (access = AccessLevel .PRIVATE )
92
100
public static class Builder {
Original file line number Diff line number Diff line change @@ -94,6 +94,14 @@ public Builder toBuilder() {
94
94
return builder ().language (language ).patterns (patterns );
95
95
}
96
96
97
+ /**
98
+ * Facilitates the construction of Query instances.
99
+ * It allows for the step-by-step creation of these objects
100
+ * by providing methods for setting individual attributes.
101
+ * Input validations are performed at each build step.
102
+ *
103
+ * @since 1.7.0
104
+ */
97
105
@ FieldDefaults (level = AccessLevel .PRIVATE )
98
106
@ NoArgsConstructor (access = AccessLevel .PRIVATE )
99
107
public static class Builder {
You can’t perform that action at this time.
0 commit comments