Sha256: 0a70922d18bdd16036cbede3b1aa486cae6f91fbf8075d12a19853af9a520381
Contents?: true
Size: 1.08 KB
Versions: 7
Compression:
Stored size: 1.08 KB
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = RTFWithQuerySupport.rb -- The TaskJuggler III Project Management Software # # Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 # by Chris Schlaeger <chris@linux.com> # # 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 'taskjuggler/RichText/FunctionHandler' class TaskJuggler class RTFWithQuerySupport < RichTextFunctionHandler def initialize(messageHandler, type, sourceFileInfo = nil) super @query = nil end # This function must be called to register the Query object that will be # used to resolve the queries. It will create a copy of the object since # it will modify it. def setQuery(query) @query = query.dup end end class RichTextIntermediate def setQuery(query) @functionHandlers.each_value do |handler| if handler.respond_to?('setQuery') handler.setQuery(query) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems