class Mexico::FileSystem::ParticipantRole

Participant Roles describe the nature of the associated participant: Possible values are, e.g., naive participants, confederates, experimenters, etc.

Public Class Methods

new(opts={}) click to toggle source
# File lib/mexico/file_system/participant_role.rb, line 36
def initialize(opts={})
  # @corpus = corpus
  [:identifier,:name,:description].each do |att|
    send("#{att}=", opts[att]) if opts.has_key?(att)
  end
end