[Source]
# File lib/uttk/status.rb, line 101 def initialize ( *a, &b ) @timeout_id = (@@timeout_id += 1) super end
# File lib/uttk/status.rb, line 110 def self.status_name :ABORT end
# File lib/uttk/status.rb, line 106 def == ( rhs ) rhs.class <= self.class and @timeout_id == rhs.timeout_id end
[Validate]