File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
spring-shell-core/src/main/java/org/springframework/shell/component/view/screen Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2023 the original author or authors.
2
+ * Copyright 2023-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -151,7 +151,24 @@ interface WriterBuilder {
151
151
*/
152
152
WriterBuilder layer (int index );
153
153
154
+ /**
155
+ * Define a color this {@link Writer} operates on.
156
+ * {@code WriterBuilder} defaults to no defined color.
157
+ *
158
+ * @param color the color
159
+ * @return a writer builder for chaining
160
+ * @See Color
161
+ */
154
162
WriterBuilder color (int color );
163
+
164
+ /**
165
+ * Define a style this {@link Writer} operates on.
166
+ * {@code WriterBuilder} defaults to no defined style.
167
+ *
168
+ * @param style the style
169
+ * @return a writer builder for chaining
170
+ * @see ScreenItem
171
+ */
155
172
WriterBuilder style (int style );
156
173
157
174
/**
You can’t perform that action at this time.
0 commit comments