Package org.refcodes.mixin
Interface OutputStreamAccessor.OutputStreamBuilder<B extends OutputStreamAccessor.OutputStreamBuilder<?>>
-
- Type Parameters:
B- The builder which implements theOutputStreamAccessor.OutputStreamBuilder.
- Enclosing interface:
- OutputStreamAccessor
public static interface OutputStreamAccessor.OutputStreamBuilder<B extends OutputStreamAccessor.OutputStreamBuilder<?>>Provides a mutator for an output stream property.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BwithOutputStream(java.io.OutputStream aOutputStream)Sets the output stream to use and returns this builder as of the Builder-Pattern.
-
-
-
Method Detail
-
withOutputStream
B withOutputStream(java.io.OutputStream aOutputStream)
Sets the output stream to use and returns this builder as of the Builder-Pattern.- Parameters:
aOutputStream- The output stream to be stored by the output stream property.- Returns:
- This
OutputStreamAccessor.OutputStreamBuilderinstance to continue configuration.
-
-