diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-26 16:51:43 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-26 16:51:43 +0200 |
commit | e29b965e1ffbb06f26443028c1ac38f1de4f046e (patch) | |
tree | 84ae0dc6477087631d8fe6e612268f10cdbb2b69 /lib/edoors/board.rb | |
parent | 251b40b13e9e4603ad6ee66f1ca5b3f536ea6cfd (diff) | |
download | edoors-ruby-e29b965e1ffbb06f26443028c1ac38f1de4f046e.zip edoors-ruby-e29b965e1ffbb06f26443028c1ac38f1de4f046e.tar.gz |
Board: add yard documentation
Diffstat (limited to 'lib/edoors/board.rb')
-rw-r--r-- | lib/edoors/board.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/edoors/board.rb b/lib/edoors/board.rb index f845dcd..990d312 100644 --- a/lib/edoors/board.rb +++ b/lib/edoors/board.rb @@ -25,11 +25,20 @@ module Edoors # class Board < Door # + # creates a Board object from the arguments. + # + # @param [String] n the name of this Board + # @param [Iota] p the parent + # def initialize n, p super n, p @postponed = {} end # + # called by JSON#generate to serialize the Board object into JSON data + # + # @param [Array] a belongs to JSON generator + # def to_json *a { 'kls' => self.class.name, @@ -38,6 +47,12 @@ module Edoors }.merge(hibernate!).to_json *a end # + # creates a Board object from a JSON data + # + # @param [Hash] o belongs to JSON parser + # + # @raise Edoors::Exception if the json kls attribute is wrong + # def self.json_create o raise Edoors::Exception.new "JSON #{o['kls']} != #{self.name}" if o['kls'] != self.name board = self.new o['name'], o['parent'] @@ -48,6 +63,10 @@ module Edoors board end # + # process the given particle then forward it to user code + # + # @param [Particle] p the Particle to be processed + # def process_p p @viewer.receive_p p if @viewer if p.action!=Edoors::ACT_ERROR |