Class: Caliper::Entities::Annotation::TagAnnotation

Inherits:
Annotation show all
Defined in:
lib/caliper/entities/annotation/tag_annotation.rb

Instance Attribute Summary collapse

Attributes inherited from Annotation

#annotated

Attributes inherited from EntityBase

#dateCreated, #dateModified, #description, #extensions, #name

Attributes inherited from Entity

#context, #id, #type

Instance Method Summary collapse

Methods included from Jsonable

#eql?, #from_json, included, #to_json

Constructor Details

#initializeTagAnnotation

Returns a new instance of TagAnnotation.



31
32
33
34
35
# File 'lib/caliper/entities/annotation/tag_annotation.rb', line 31

def initialize()
  super
  @type = Caliper::Entities::Annotation::AnnotationType::TAG_ANNOTATION
  @tags = Array.new
end

Instance Attribute Details

#tagsObject

Returns the value of attribute tags.



29
30
31
# File 'lib/caliper/entities/annotation/tag_annotation.rb', line 29

def tags
  @tags
end