class LD4L::OpenAnnotationRDF::CommentAnnotation

Public Class Methods

new(*args) click to toggle source

Special processing for new and resumed CommentAnnotations

Calls superclass method
# File lib/ld4l/open_annotation_rdf/comment_annotation.rb, line 48
def initialize(*args)
  super(*args)

  # set motivatedBy
  m = get_values(:motivatedBy)
  m = m.to_a if Object::ActiveTriples.const_defined?("Relation") && m.kind_of?(ActiveTriples::Relation)
  set_value(:motivatedBy, RDF::Vocab::OA.commenting) unless m.kind_of?(Array) && m.size > 0

  # resume CommentBody if it exists
  comment_uri = get_values(:hasBody).first
  if( comment_uri )
    comment_uri = comment_uri.rdf_subject  if comment_uri.kind_of?(ActiveTriples::Resource)
    @body  = LD4L::OpenAnnotationRDF::CommentBody.new(comment_uri)
  end
end

Public Instance Methods

getComment() click to toggle source

Get the value of the comment stored in a comment annotation.

@return text value of comment

# File lib/ld4l/open_annotation_rdf/comment_annotation.rb, line 40
def getComment
  comments = @body.content
  comments && comments.size > 0 ? comments.first : ""
end
setComment(comment) click to toggle source

Create a comment annotation body and set the hasBody property to it.

@param [String]

@return instance of CommentAnnotation

# File lib/ld4l/open_annotation_rdf/comment_annotation.rb, line 17
def setComment(comment)
  @body ||= hasBody.first if hasBody.size > 0
  if self.respond_to? 'persistence_strategy'  # >= ActiveTriples 0.8
    @body ||= LD4L::OpenAnnotationRDF::CommentBody.new(
        ActiveTriples::LocalName::Minter.generate_local_name(
            LD4L::OpenAnnotationRDF::CommentBody, 10, @localname_prefix,
            LD4L::OpenAnnotationRDF.configuration.localname_minter),self)
  else # < ActiveTriples 0.8
    @body ||= LD4L::OpenAnnotationRDF::CommentBody.new(
        ActiveTriples::LocalName::Minter.generate_local_name(
            LD4L::OpenAnnotationRDF::CommentBody, 10, @localname_prefix,
            LD4L::OpenAnnotationRDF.configuration.localname_minter))
  end
  @body.content = comment
  @body.format  = "text/plain"
  set_value(:hasBody, @body)
  @body
end