#!/usr/bin/env ruby -w # encoding: UTF-8 # # = RTFHandlers.rb -- The TaskJuggler III Project Management Software # # Copyright (c) 2006, 2007, 2008, 2009, 2010 by Chris Schlaeger # # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # require 'RTFNavigator' require 'RTFQuery' require 'RTFReport' require 'RTFReportLink' class TaskJuggler # This convenience class creates an Array containing all RichTextFunction # objects used by TaskJuggler. class RTFHandlers def RTFHandlers.create(project, sourceFileInfo = nil) [ RTFNavigator.new(project, sourceFileInfo), RTFQuery.new(project, sourceFileInfo), RTFReport.new(project, sourceFileInfo), RTFReportLink.new(project, sourceFileInfo) ] end end end