Class Origami::Annotation::Text
In: sources/parser/annotations.rb
Parent: Annotation

Text annotation

Methods

pre_build  

Included Modules

Markup

Classes and Modules

Module Origami::Annotation::Text::TextName

Public Instance methods

[Source]

     # File sources/parser/annotations.rb, line 324
324:       def pre_build
325:          
326:         model = self.StateModel
327:         state = self.State
328:         
329:         case model
330:         when "Marked"
331:           state = "Unmarked" if state.nil?
332:         when "Review"
333:           state = "None" if state.nil?
334:         end
335: 
336:         super
337:       end

[Validate]