Sha256: 3781c3510d68c2f9f98e38b0f7a7ef2edd3bb575dd07d26b76de037fcffb89bb

Contents?: true

Size: 600 Bytes

Versions: 1

Compression:

Stored size: 600 Bytes

Contents

module RiCal

  class Component
    # An Alarm component groups properties defining a reminder or alarm associated with an event or to-do
    # TODO: The Alarm component has complex cardinality restrictions depending on the value of the action property
    # i.e. audio, display, email, and proc alarms, this is currently not checked or enforced
    #
    # to see the property accessing methods for this class see the RiCal::Properties::Alarm module
    class Alarm < Component
      include RiCal::Properties::Alarm

      def self.entity_name #:nodoc:
        "VALARM"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
friflaj_ri_cal-0.9.0 lib/ri_cal/component/alarm.rb