[Source]
184: def initialize( src ) 185: super() 186: @entity = src 187: end
188: def to_s 189: @entity 190: end
191: def write( output, indent ) 192: output << @entity 193: output << "\n" 194: end
[Validate]