class TaskJuggler::TimeSheets

A class to hold all time sheets of a project.

Public Class Methods

new() click to toggle source
# File lib/taskjuggler/TimeSheets.rb, line 387
def initialize
  super
end

Public Instance Methods

check() click to toggle source
# File lib/taskjuggler/TimeSheets.rb, line 391
def check
  each { |s| s.check }
end
warnOnDelta() click to toggle source
# File lib/taskjuggler/TimeSheets.rb, line 395
def warnOnDelta
  each { |s| s.warnOnDelta }
end