# File lib/rdf/redland/schemas/rdfs.rb, line 34
  def comment=(a_comment)
    if a_comment.class == String
      self.delete_property(RDFS_COMMENT)
      self.add_property(RDFS_COMMENT,a_comment)
    end
    return self
  end