Parent

Methods

Runt::Event

Attributes

id[R]

Public Class Methods

new(id) click to toggle source
# File lib/runt/schedule.rb, line 75
def initialize(id)
  raise Exception, "id argument cannot be nil" unless !id.nil?
  @id=id
end

Public Instance Methods

==(other) click to toggle source
# File lib/runt/schedule.rb, line 82
def == (other)
  return true if other.kind_of?(Event) && @id==other.id
end
to_s() click to toggle source
# File lib/runt/schedule.rb, line 80
def to_s; @id.to_s end

[Validate]

Generated with the Darkfish Rdoc Generator 2.