class PDFRavager::Fields::Text
Attributes
name[R]
value[R]
Public Class Methods
new(name, value)
click to toggle source
# File lib/pdf_ravager/fields/text.rb, line 12 def initialize(name, value) @name, @value = name, value end
Public Instance Methods
==(other)
click to toggle source
# File lib/pdf_ravager/fields/text.rb, line 16 def ==(other) self.name == other.name && self.value == other.value end