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

Text annotation p621

Methods

pre_build  

Classes and Modules

Module Origami::Annotation::Text::TextName

Public Instance methods

[Source]

     # File sources/parser/annotations.rb, line 280
280:       def pre_build
281:          
282:         model = self.StateModel
283:         state = self.State
284:         
285:         case model
286:         when "Marked"
287:           state = "Unmarked" if state.nil?
288:         when "Review"
289:           state = "None" if state.nil?
290:         end
291: 
292:         super
293:       end

[Validate]