Returns a new instance of HtmlFlow with the same properties of this object but with indented set to the value of isIndented parameter.
(boolean isIndented)
| 139 | * set to the value of isIndented parameter. |
| 140 | */ |
| 141 | @Override |
| 142 | public HtmlView<M> setIndented(boolean isIndented) { |
| 143 | return HtmlFlow.view( |
| 144 | getVisitor().out(), |
| 145 | template, |
| 146 | isIndented, |
| 147 | threadSafe, |
| 148 | true, |
| 149 | false |
| 150 | ); |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Returns a new instance of HtmlView with the same properties of this object but with preEncoding |
nothing calls this directly
no test coverage detected