303132333435363738394041424344454647
@Override protected void init() { super.init(); final Whitespace ws = context( ValueProperty.class ).getAnnotation( Whitespace.class ); if( ws == null ) { this.trim = true; this.collapse = false; } else { this.trim = ws.trim(); this.collapse = ws.collapse(); } }