The TagFileEntry class is used to store the intermediate representation of the TagFile.
Create a new TagFileEntry object. tag is the property ID. file is the source file name, line the line number in this file. kind specifies the property type. The following types should be used: r : Resource t : Task p : Report
# File lib/taskjuggler/reports/TagFile.rb, line 33 def initialize(tag, file, line, kind) @tag = tag @file = file @line = line @kind = kind end
Used to sort the tag file entries by tag.
# File lib/taskjuggler/reports/TagFile.rb, line 41 def <=>(e) @tag <=> e.tag end