903 resultados para Java utility
Resumo:
The measurement of alcohol craving began with single-item scales. Multifactorial scales developed with the intention to capture more fully the phenomenon of craving. This study examines the construct validity of a multifactorial scale, the Yale-Brown Obsessive Compulsive Scale for heavy drinking (Y-BOCS-hd). The study compares its clinical utility with a single item visual-analogue craving scale. The study includes 212 alcohol dependent subjects (127 males, 75 females) undertaking an outpatient treatment program between 1999-2001. Subjects completed the Y-BOCS-hd and a single item visual-analogue scale, in addition to alcohol consumption and dependence severity measures. The Y-BOCS-hd had strong construct validity. Both the visual-analogue alcohol craving scale and Y-BOCS-hd were weakly associated with pretreatment dependence severity. There was a significant association between pretreatment alcohol consumption and the visual-analogue craving scale. Neither craving measure was able to predict total program abstinence or days abstinent. The relationship between obsessive-compulsive behavior in alcohol dependence and craving remains unclear.
Resumo:
Background and Aim: The Dynamic Occupational Therapy Cognitive Assessment for Children (DOTCA-Ch), recently developed in Israel, assesses the cognitive areas: orientation, spatial perception, praxis, visuomotor construction and thinking operations of 6- to 12-year-old children. The dynamic aspect, which incorporates mediation and prompting, has been presented as a valuable clinical feature of this new assessment. This study investigated the cultural suitability, dynamic nature and comprehensiveness of the DOTCA-Ch as a single cognitive assessment for occupational therapy practice in Australia. Methods: Twenty-three paediatric occupational therapists participated in three tutorial and video demonstrations, which were then followed by a group interview. Results and Conclusion: Thematic analysis of transcripts identified four main themes: appropriateness of assessment tasks, language, mediation and clinical utility. Within each theme, the participants raised both positive and negative features. This paper highlights occupational therapists' mixed views on the clinical utility of this assessment in Australia. Limitations of this study and areas for further research are suggested
Resumo:
While object-oriented programming offers great solutions for today's software developers, this success has created difficult problems in class documentation and testing. In Java, two tools provide assistance: Javadoc allows class interface documentation to be embedded as code comments and JUnit supports unit testing by providing assert constructs and a test framework. This paper describes JUnitDoc, an integration of Javadoc and JUnit, which provides better support for class documentation and testing. With JUnitDoc, test cases are embedded in Javadoc comments and used as both examples for documentation and test cases for quality assurance. JUnitDoc extracts the test cases for use in HTML files serving as class documentation and in JUnit drivers for class testing. To address the difficult problem of testing inheritance hierarchies, JUnitDoc provides a novel solution in the form of a parallel test hierarchy. A small controlled experiment compares the readability of JUnitDoc documentation to formal documentation written in Object-Z. Copyright (c) 2005 John Wiley & Sons, Ltd.
Resumo:
Background and Purpose - Although implemented in 1998, no research has examined how well the Australian National Subacute and Nonacute Patient (AN-SNAP) Casemix Classification predicts length of stay (LOS), discharge destination, and functional improvement in public hospital stroke rehabilitation units in Australia. Methods - 406 consecutive admissions to 3 stroke rehabilitation units in Queensland, Australia were studied. Sociode-mographic, clinical, and functional data were collected. General linear modeling and logistic regression were used to assess the ability of AN-SNAP to predict outcomes. Results - AN-SNAP significantly predicted each outcome. There were clear relationships between the outcomes of longer LOS, poorer functional improvement and discharge into care, and the AN-SNAP classes that reflected poorer functional ability and older age. Other predictors included living situation, acute LOS, comorbidity, and stroke type. Conclusions - AN-SNAP is a consistent predictor of LOS, functional change and discharge destination, and has utility in assisting clinicians to set rehabilitation goals and plan discharge.
Resumo:
The difficulty of establishing a diagnosis and confirming cure of strongyloidiasis is widely appreciated. As parasitological diagnosis is often unsatisfactory, serodiagnosis is frequently relied upon. The aim of this study was to investigate changes in Strongyloides-specific antibody levels among a group of 79 seropositive Indigenous Australians living in a Strongyloides-endemic region. Testing before and after treatment revealed that seroreversion occurred most commonly after multiple courses of ivermectin therapy, with antibody titres of 35/42 (83%) subjects becoming negative. Seroreversion was also common following a single course of ivermectin or multiple courses of a 3-day regimen of albendazole, with seroreversion occurring in 13/19 (68%) and 7/10 (70%) subjects respectively. One 3-day course of albendazole was less effective with 4/10 (40%) subjects seroreverting, whereas none of the five subjects receiving a single dose of albendazole and 1/10 (10%) of subjects receiving no therapy seroreverted. These results support the use of serological follow-up for strongyloidiasis, and indicate that reversion to negative serostatus after ivermectin therapy is frequent.
Resumo:
Background: Paediatricians rely on cough descriptors to direct them to the level of investigations needed for a child presenting with chronic cough, yet there is a lack of published data to support this approach. A study was undertaken to evaluate ( 1) whether historical cough pointers can predict which children have a specific cause for their cough and ( 2) the usefulness of chest radiography and spirometry as standard investigations in children with chronic cough. Methods: This was a prospective cohort study of children referred to a tertiary hospital with a cough lasting 3 weeks between June 2002 and July 2004. All included children completed a detailed history and examination using a standardised data collection sheet and followed a pathway of investigation until a diagnosis was made. Results: In 100 consecutively recruited children of median age 2.8 years, the best predictor of specific cough observed was a moist cough at the time of consultation with an odds ratio ( OR) of 9.34 (95% CI 3.49 to 25.03). Chest examination or chest radiographic abnormalities were also predictive with OR 3.60 ( 95% CI 1.31 to 9.90) and 3.16 (95% CI 1.32 to 7.62), respectively. The most significant historical pointer for predicting a specific cause of the cough was a parental history of moist cough ( sensitivity 96%, specificity 26%, positive predictive value 74%). Conclusions: The most useful clinical marker in predicting specific cough is the presence of a daily moist cough. Both chest examination and chest radiographic abnormalities are also useful in predicting whether children have a specific cause of their cough.
Resumo:
Summary form only given. The Java programming language supports concurrency. Concurrent programs are harder to verify than their sequential counterparts due to their inherent nondeterminism and a number of specific concurrency problems such as interference and deadlock. In previous work, we proposed a method for verifying concurrent Java components based on a mix of code inspection, static analysis tools, and the ConAn testing tool. The method was derived from an analysis of concurrency failures in Java components, but was not applied in practice. In this paper, we explore the method by applying it to an implementation of the well-known readers-writers problem and a number of mutants of that implementation. We only apply it to a single, well-known example, and so we do not attempt to draw any general conclusions about the applicability or effectiveness of the method. However, the exploration does point out several strengths and weaknesses in the method, which enable us to fine-tune the method before we carry out a more formal evaluation on other, more realistic components.
Resumo:
Testing concurrent software is difficult due to problems with inherent nondeterminism. In previous work, we have presented a method and tool support for the testing of concurrent Java components. In this paper, we extend that work by presenting and discussing techniques for testing Java thread interrupts and timed waits. Testing thread interrupts is important because every Java component that calls wait must have code dealing with these interrupts. For a component that uses interrupts and timed waits to provide its basic functionality, the ability to test these features is clearly even more important. We discuss the application of the techniques and tool support to one such component, which is a nontrivial implementation of the readers-writers problem.
Resumo:
It is not especially controversial to suggest that the academic literature on Chineseness has for some time been focused upon the ‘porousness’ and ‘strategic’ possibilities of identity categories. This is most clearly observable in the legacy of cultural theory upon identity politics. In particular, terms such as hybridity have not only expanded the political potential for fragmenting conventional identifications, but also symbolised the sorts of ‘complicated entanglements’ within which individuals and communities are perpetually caught. The discursive mileage of hybridity has meant, over time, that it has also attracted criticism. Some of this criticism comes from academics engaged in more materialist forms of research. These sorts of contrary perspectives have often sought to ground hybrid identifications within the cultural and historical milieu from which they are enacted, whenever they are enacted.