Sha256: 191bc34ea3b1c2f4a38b838617ad54f058e2be15366a3587419af53ebe7f53de
Contents?: true
Size: 630 Bytes
Versions: 3
Compression:
Stored size: 630 Bytes
Contents
class DAP::ColumnDescriptor < DAP::Base # Name of the attribute rendered in this column. property :attributeName # Header UI label of column. property :label # Format to use for the rendered values in this column. TBD how the format strings looks like. property :format, required: false # Datatype of values in this column. Defaults to 'string' if not specified. # Values: 'string', 'number', 'boolean', 'unixTimestampUTC', etc. property :type, required: false # 'string' | 'number' | 'boolean' | 'unixTimestampUTC' # Width of this column in characters (hint only). property :width, required: false end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/column_descriptor.rb |
ruby-dap-0.1.1 | lib/dap/column_descriptor.rb |
ruby-dap-0.1.0 | lib/dap/column_descriptor.rb |