6 resultados para Agricultural extension workers

em Boston University Digital Common


Relevância:

20.00% 20.00%

Publicador:

Resumo:

http://www.archive.org/details/behindthegreatw00barnuoft/

Relevância:

20.00% 20.00%

Publicador:

Resumo:

Studies suggest that income replacement is low for many workers with serious occupational injuries and illnesses. This review discusses three areas that hold promise for raising benefits to workers while reducing workers' compensation costs to employers: improving safety, containing medical costs, and reducing litigation. In theory, workers' compensation increases the costs to employers of injuries and so provides incentives to improve safety. Yet, taken as a whole, research does not provide convincing evidence that workers' compensation reduces injury rates. Moreover, unlike safety and health regulation, workers' compensation focuses the attention of employers on individual workers. High costs may lead employers to discourage claims and litigate when claims are filed. Controlling medical costs can reduce workers' compensation costs. Most studies, however, have focused on costs and have not addressed the effectiveness of medical care or patient satisfaction. Research also has shown that workers' compensation systems can reduce the need for litigation. Without litigation, benefits can be delivered more quickly and at lower costs.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

BACKGROUND: In response to concerns expressed by workers at a public meeting, we analyzed the mortality experience of workers who were employed at the IBM plant in Endicott, New York and died between 1969-2001. An epidemiologic feasibility assessment indicated potential worker exposure to several known and suspected carcinogens at this plant. METHODS: We used the mortality and work history files produced under a court order and used in a previous mortality analysis. Using publicly available data for the state of New York as a standard of comparison, we conducted proportional cancer mortality (PCMR) analysis. RESULTS: The results showed significantly increased mortality due to melanoma (PCMR = 367; 95% CI: 119, 856) and lymphoma (PCMR = 220; 95% CI: 101, 419) in males and modestly increased mortality due to kidney cancer (PCMR = 165; 95% CI: 45, 421) and brain cancer (PCMR = 190; 95% CI: 52, 485) in males and breast cancer (PCMR = 126; 95% CI: 34, 321) in females. CONCLUSION: These results are similar to results from a previous IBM mortality study and support the need for a full cohort mortality analysis such as the one being planned by the National Institute for Occupational Safety and Health.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

Generic object-oriented programming languages combine parametric polymorphism and nominal subtype polymorphism, thereby providing better data abstraction, greater code reuse, and fewer run-time errors. However, most generic object-oriented languages provide a straightforward combination of the two kinds of polymorphism, which prevents the expression of advanced type relationships. Furthermore, most generic object-oriented languages have a type-erasure semantics: instantiations of type parameters are not available at run time, and thus may not be used by type-dependent operations. This dissertation shows that two features, which allow the expression of many advanced type relationships, can be added to a generic object-oriented programming language without type erasure: 1. type variables that are not parameters of the class that declares them, and 2. extension that is dependent on the satisfiability of one or more constraints. We refer to the first feature as hidden type variables and the second feature as conditional extension. Hidden type variables allow: covariance and contravariance without variance annotations or special type arguments such as wildcards; a single type to extend, and inherit methods from, infinitely many instantiations of another type; a limited capacity to augment the set of superclasses after that class is defined; and the omission of redundant type arguments. Conditional extension allows the properties of a collection type to be dependent on the properties of its element type. This dissertation describes the semantics and implementation of hidden type variables and conditional extension. A sound type system is presented. In addition, a sound and terminating type checking algorithm is presented. Although designed for the Fortress programming language, hidden type variables and conditional extension can be incorporated into other generic object-oriented languages. Many of the same problems would arise, and solutions analogous to those we present would apply.