7 Pages

CS-TR-4018

Course: TOMOS 1903, Fall 1920
School: Maryland
Rating:
 
 
 
 
 

Word Count: 4303

Document Preview

and Architecture Implementation of a Java Package for Multiple Input Devices (MID) Juan Pablo Hourcade, Benjamin B. Bederson Human-Computer Interaction Lab, Institute for Advanced Computer Studies Computer Science Department University of Maryland, College Park, MD 20742 USA +1 301 405-2764 {jpablo, bederson}@cs.umd.edu ABSTRACT A major difficulty in writing Single Display Groupware (co-present collaborative)...

Register Now

Unformatted Document Excerpt

Coursehero >> Maryland >> Maryland >> TOMOS 1903

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
and Architecture Implementation of a Java Package for Multiple Input Devices (MID) Juan Pablo Hourcade, Benjamin B. Bederson Human-Computer Interaction Lab, Institute for Advanced Computer Studies Computer Science Department University of Maryland, College Park, MD 20742 USA +1 301 405-2764 {jpablo, bederson}@cs.umd.edu ABSTRACT A major difficulty in writing Single Display Groupware (co-present collaborative) applications is getting input from multiple devices. We introduce MID, a Java package that addresses this problem and offers an architecture to access advanced events through Java. In this paper, we describe the features, architecture and limitations of MID. We also briefly describe an application that uses MID to get input from multiple mice: KidPad. Keywords Single Display Groupware (SDG), Computer-Supported Cooperative Work (CSCW), Multiple Input Devices (MID), Multi-Modal Input, Java, DirectInput, Windows 98, Universal Serial Bus (USB), KidPad, Jazz, Pad++. INTRODUCTION Communication, collaboration, and coordination are brought to many peoples desktops thanks to groupware applications such as Lotus Notes and Microsoft Exchange, some of the leading commercial products in the field of Computer-Supported Cooperative Work (CSCW). They help people collaborate when they are not in the same place at the same time. We believe that computers should also help people collaborate when they are in the same place at the same time. Single Display Groupware (SDG) is a model for supporting co-present collaborative work. An SDG application makes it possible for co-present users to collaborate using a single computer and display through the use of multiple input devices [16]. SDG applications must deal with problems particular to their domain, and rules of interaction need to be considered. There are a range of issues that come up for builders of SDG applications. Providing interaction Figure 1: Two children using two mice with one computer. They are running KidPad, an application we wrote that uses MID. metaphors that make sense for SDG is a challenge. What should an application do if users issue incompatible commands? How should an SDG application deal with global states and focus issues? Should each user have his/her own set of tools and menus? The use of screen space is also critical. These questions have been addressed elsewhere [4, 13, 16]. In this paper, we focus on the technical issue of getting input from multiple devices on one computer with a consistent mechanism. We introduce Multiple Input Devices (MID), a Java package that supports input from multiple devices on a single computer. It provides developers using Java the ability to write SDG applications with a powerful yet straightforward and cross-platform way for getting input from multiple devices. It is a general purpose architecture for various kinds of input devices. We chose Java because of platform independence. We want our SDG applications to run on multiple platforms. MID is open source software according to the GNU Library Public License, and is available at: http://www.cs.umd.edu/hcil/mid MID consists of a cross-platform Java layer, and a native platform-specific layer. The cross-platform layer has to be extended for each new device type. A native class must be implemented for each device on each platform. The Java layer extends the standard Java event classes. Applications using MID use just this layer, and do not have to be changed for use on different platforms. MID currently supports just Universal Serial Bus (USB) mice on Windows 98. We picked this hardware/platform combination to start because of its wide availability and install base, and because of the generality of USB devices. While Windows NT does not yet support USB devices, Microsoft has informed us that the next version of NT will, and we should be able to get input from multiple mice there as with Windows 98. The only issue with the next version of NT is that a registry key will have to be set so that NT will not merge the input from multiple mice before it gets to MID. We chose mice as the first device to support because they are not very expensive, and because a good percentage of Personal Computer users are familiar with how to use them. We chose the USB standard because up to 256 devices can be connected through a single USB port (via hubs), and USB is a growing standard which we expect will dominate the protocols for input devices in the near future. While MID is written largely in Java and is designed to be as cross-platform as possible, there is a fundamental tradeoff to be made in the degree of portability vs. the feature set MID offers. Since Java already supports a truly crossplatform event model, we decided that our goal for MID is to enable applications to access all the input device capability possible while working in as cross-platform a manner as possible. This trade-off has worked out to mean that while the applications that use MID do not have to be changed to run on different platforms, the underlying implementation of MID must be updated for different devices and different platforms. Furthermore, the very nature of accessing specialized input devices means that if those input devices are not physically available, then it is the applications responsibility to deal with that, and accommodate the user with whatever input devices are available. The good news, though, is that applications that use MID will work even if the MID native code is unavailable. In this case, MID reverts to offering just standard Java events. RELATED WORK The Pebbles project has investigated the use of Personal Digital Assistants (PDAs) as input devices for SDG applications [13]. While PDAs as input devices are a fine choice for people that already have them or for some special situations, they are currently a prohibitive expense for most people that just want an input device to control a mouse cursor, being approximately 10 times the cost of a standard mouse. MID gets input from USB mice, which are considerably less expensive than PDAs. Mice may also have an advantage over PDAs when users, such as young children, dont have a lot of precision in their control of input devices. Inkpen studied the effects of turn-taking protocols on children's learning in mouse-driven collaborative environments [10]. In her study, two mice were connected to a computer, but they were not used simultaneously. Bricker used Windows-based gaming input devices to investigate how multiple users collaborated on a single computer when each controlled a different aspect of the input [5]. Rekimotos pick-and-drop [14] allows for drag-and-drop between computers or PDAs through the use of special pens. While his architecture supports a computer receiving input from multiple devices, the focus of his research was not on SDG. Pick-and-drop requires special hardware, computers that are connected by a network, and provides only two types of interaction: picking and dropping. Some video game systems can get input from multiple devices and would be able to support limited SDG applications. These systems for the most part support only joysticks and are not particularly easy to program. Finally, Buxton and others have investigated how one person can use both hands simultaneously to interact with a computer. This area also has all been implemented with custom code to receive input from one extra device, typically a tablet using a serial port [6, 11, 12]. MID MID extends the standard Java event mechanism. In order for applications to use MID, they must replace all uses of the standard Java events with the extended MID events. With the current support of Windows 98 USB mice, an application using MID can access multiple mice provided the MID dynamic link library (MID DLL) is present in the system. We will refer to a system running Windows 98, with the MID DLL and USB mice as a MID-ready system. Applications that use MID will always work. If an application that uses MID runs on a non-MID-ready system (i.e., the native DLL file is not installed and/or USB mice are not present and/or the operating system is not Windows 98), MID reverts to using Java mouse events. Therefore, an application that uses MID will have the advantage of getting input from multiple mice when running on MID- Other people have also looked at the problem of getting input from multiple devices. Stewart solved the problem on X Windows using XInputExtension [15]. His solution supported serial mice and tablets, and was designed for Tcl/Tk [Ousterhout]. MMM (Multi-Device, Multi-User, Multi-Editor) was an early SDG environment that also supported input from up to three mice [4]. ready systems, and will still work with one mouse when running on non-MID-ready systems. USE OF MID EVENTS VERSUS JAVA EVENTS To a programmer, using MID is very similar to using Java mouse events. MID extends the three Java classes associated with events that applications typically use: event listeners, event sources, and the events themselves. Use of Java Mouse Events A class that receives Java mouse events has to implement two interfaces in order to get all possible mouse events: MouseListener and MouseMotionListener. It also has to register with a component (usually the visible window where the events will occur) to get those events. It does so by calling the addMouseListener and addMouseMotionListener methods on the component. Finally, the class has to implement the methods specified in the interfaces. These methods will be called when mouse events occur, and a MouseEvent object describing the event will be passed to them. The top of Figure 2 shows sample code of a class that uses Java mouse events. Use of MID Mouse Events On MID-ready systems, the MID source object supports extra features. It allows developers to set the location of mice, motion constraints, and the time span used for counting mouse clicks. Setting the location of mice is particularly useful for an application that has to define its own cursors and needs to give them an appropriate initial location on the screen. Constraining the motion of all mice and/or the motion of particular mice can be used to keep the cursor within the visible area of the window. Another application would be to divide the screen into regions where only one mouse would operate in each region. Another important extra feature of MID is that it enables applications to access all of the input buttons and movement axes on the particular mouse in use. Thus, a mouse with a wheel generates a third button event and motion in the z axis. MID ARCHITECTURE In this section we describe the design of MID. Figure 3 shows MIDs class structure. MID with and without native code The bottom of Figure 2 shows sample code of a class that uses MID mouse events. The most noticeable difference between this code and the code that uses Java mouse events is one extra line of code that gets a MID source (MIDMouseEventSource) object. A component is passed to the MID source object because the native code needs a handle to a visible window in order to work. Instead of registering with a component, the class has to register with the MID source object to listen to MID events. This is because the MID source object generates the MID events. MID offers the flexibility of registering to listen to all devices or to a particular device. This supports applications written in two styles. The first style dispatches events from all devices to each listener. It is up to the listener to determine which device generated the event by calling MIDEvent.getMouseID(), which returns the ID of the mouse that generated the event. An alternative application style is to register a listener to receive events from a specific device. Then, an application would write one listener for each device, which would support decoupling of the devices. In addition, there is a call to MIDMouseEventSource. getNumberOfMice() that returns the number of mice currently available. This turns out to be necessary for most applications so they can build internal data structures and mechanisms to support the available input devices. The only other difference in the code is that the names of the interfaces and the registration methods, and the name of the event have "MID" prepended. MID is works on both MID-ready and non-MID-ready systems. We provide developers with a MID source class. It is a singleton [9] and implements a getInstance() method that returns one of its subclasses: MID multi source (MIDMultiMouseEventSource), or MID single source (MIDSingleMouseEventSource). A MID multi source object is returned when running on MID-ready systems. It uses native code to get input from multiple mice. A MID single source object is returned when running on non-MIDready systems. It listens to Java mouse events and then turns them into MID mouse events. MID on MID-ready systems The MID multi source class is the heart of MID. On MIDready systems it takes care of registering listeners, checking for mouse events, creating MID mouse events, and broadcasting them to the listeners. It also takes care of providing all the extra functionality developers get from MID source objects on MID-ready systems. And, in order to keep track of the listeners it registers, MID has its own multicaster. The MID native code generates events by using the Microsoft DirectInput API to receive events from USB mice. However, it currently assumes there is only one keyboard in order to support the mouse event's access to the keyboard control, shift, and alt modifier keys. This access to the keyboard through the mouse events demonstrates the low level at which the assumption of a single mouse and keyboard have been made. When MID supports multiple keyboards, we will have to deal with this differently. // Java code using standard Java events to access mouse and mouse motion events // MyClass class implements MouseListener, MouseMotionListener { // Constructor adds mouse and mouse motion listeners public MyClass(Component myComponent) { ... myComponent.addMouseListener(this); myComponent.addMouseMotionListener(this); ... } // Mouse listener events public void mousePressed(MouseEvent e) { ... } public void mouseReleased(MouseEvent e) { ... } ... // Mouse motion listener events public void mouseMoved(MouseEvent e) { ... } public void mouseDragged(MouseEvent e) { ... } } // Java code using MID events to access mouse and mouse motion events // from multiple USB mice. // class MyClass implements MIDMouseListener, MIDMouseMotionListener { int numberOfMice; // Number of USB mice connected to system public MyClass(Component myComponent) { ... MIDMouseEventSource midSource = MIDMouseEventSource.getInstance(myComponent); numberOfMice = midSource.getNumberOfMice(); midSource.addMIDMouseListener(this); midSource.addMIDMouseMotionListener(this); ... } // Mouse listener events public void mousePressed(MIDMouseEvent e) { int device = e.getMouseID(); // Use mouse ID in application-specific manner ... } public void mouseReleased(MIDMouseEvent e) { int device = e.getMouseID(); // Use mouse ID in application-specific manner ... } ... // Mouse motion listener events public void mouseMoved(MIDMouseEvent e) { int device = e.getMouseID(); // Use mouse ID in application-specific manner ... } public void mouseDragged(MIDMouseEvent e) { int device = e.getMouseID(); // Use mouse ID in application-specific manner ... } } Figure 2: The top code fragment shows Java code that gets standard Java mouse and mouse motion events. The bottom code fragment shows Java code using MID events to access multiple mice. The Java event queue uses event coalescing to eliminate redundant events when new events are posted. For example, new mouse motion events replace existing unhandled motion events on the queue. We had to write a custom version of event coalescing for MID mouse events to make sure that events from different mice were not coalesced. MID on non-MID-ready systems consists of creating a native library that gets input from multiple mice and interfaces correctly with the MID multi source class. The library must implement all the native methods declared in the MID multi-source class, and call the MID multi-source when a mouse event occurs. Adding support for other devices is more complex. Each new device type needs its own event class, and at least one listener interface with its corresponding adapter. The MID multicaster, and MID source classes would have to be modified as well. LIMITATIONS A MID single source object runs on non-MID-ready systems. It wraps the standard Java events by registering itself as a mouse listener, and then passing the events on the application. The fact that MID single source uses pure Java code guarantees that it will run on all platforms supported by Java. To review, Figure 4 summarizes MIDs features. EXTENDING MID The most limiting aspect of MID is that it currently gets input from multiple mice only under Windows 98, when the MID DLL is in the system, and when the mice are USB mice. The mice have to be USB mice because of a limitation of Windows. Windows merges the input from the non-USB mouse with the input from USB mice into one channel. Another limitation of MID is that, when MID multi source is the source of MID mouse events, MID takes over the system cursor and users cant send mouse input to other 1 MID can be extended in two ways: adding support for multiple mice on other platforms, and adding support for other devices. Adding support for multiple mice on other platforms MIDMultipleMiceNotAvailableException 1 catches MIDMouseEventSource throws 0..1 0..1 0..1 0..1 0..1 MIDMultiMouseEventSource throws 0..1 creates 0..1 MIDSingleMouseEventSource 0..1 creates 0..1 throws 1 1 1 1 MIDIllegalMouseIDException * * MIDMouseEvent MIDMouseAdapter MIDEventMulticaster MIDMouseMotionAdapter MIDMouseListener MIDMouseMotionListener Figure 3: Class structure of MID in UML. Solid lines with solid arrows represent inheritance. Dashed lines with solid arrows represent implementation. Solid lines with open arrows represent associations. The numbers and text next to an association line represent cardinality and role of a class in the association. applications unless they switch to other applications through the keyboard. This was done on purpose because the alternative is to have both mice control the single system cursor. PERFORMANCE 100% Java API with native code per device per platform allows cross-platform applications with no awareness of application-specific details. Native code defines event input mechanisms. Currently supports USB mice on Windows 98. Applications continue to work when native code not available, but features reduce to standard Java features (i.e., extra mouse and wheel are not recognized). Provides access to all input device features such as mouse wheels. Extendable to support other input devices on other platforms. Figure 4: Summary of MID features. By generating MID mouse events when notified by DirectInput, MID suffers from minimal overhead when MID multi source is the source of MID mouse events. When MID mouse events are generated by MID single source, the only overhead is that the Java mouse events are passed through MIDs event listener on the way to the application listener. SAMPLE APPLICATION: KIDPAD We incorporated MID into an application with a user interface tailored to SDG. KidPad [7, 8] is an authoring tool for children. It includes drawing, typing and hyperlinking tools. It also has zooming capabilities. It supports the collaborative creation and telling of non-linear stories. Several children use KidPad on a single computer simultaneously where each child has their own mouse to interact with the software. There have been several previous versions KidPad that have been written in Tcl, C++, and Perl all using the Pad++ library to support zooming [2, 8, 17]. We recently rewrote KidPad in Java using Jazz, a Java package that supports 2D object-oriented graphics with zooming [3]. The Perl version of KidPad [16] got input from multiple mice on Linux computers running X. This version was very tightly tied to UNIX and X, making porting it to other platforms difficult. This was a significant problem since our target users (children) have very little access to Linux. Nevertheless, it was a successful SDG application. A good part of the reason for that success was the design of the user interface. It used local tools [1, 16] instead of using menus or tool palettes. A local tool is a graphical object that sits on the data surface along with the user-created data. Each local tool can be picked up and used with each input device. This approach is naturally suited to SDG because there is no global state (such as pen color or font). Instead, each tool has its own state. In addition, the local tools act as cursors which is crucial since no current operating systems support multiple cursors. The aim of rewriting KidPad in Java was to make it available on multiple platforms, and to take advantage of Jazz, which has replaced Pad++, the earlier zoomable graphics package. Local tools were also used in the Java version of KidPad to facilitate making it an SDG application. In about a days work we were able to modify KidPads standard Java event code so that it would take input from multiple mice. And because of MIDs architecture, KidPad runs on both MID-ready and nonMID-ready systems (i.e., 100% Java with one mouse, or a combination of Java and native code with multiple mice). With input from multiple mice available, the KidPad design team can now concentrate on figuring out interaction rules for users sharing the KidPad workspace. FUTURE WORK As other input devices, such as tablets, become available for USB, we plan to add support for them. We also plan to make a fully functional MID available to other platforms. Our first focus is likely to be UNIX systems that run X Windows. In addition, MID provides the possibility of providing more application-specific input events. For instance, an application could have a native voice-recognition system that generates events with the recognized voice data. Then, a cross-platform application could b...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Maryland - TOMOS - 1903
ABSTRACTTitle of Document:ABORT TRAJECTORIES FOR MANNED LUNAR MISSIONSE. David Beksinski Jr. Master of Science, 2007 Directed By: Professor Mark J. Lewis Department of Aerospace EngineeringWith NASAs renewed focus towards a permanent human pr
Maryland - TOMOS - 4270
ABSTRACTTitle of Document:ABORT TRAJECTORIES FOR MANNED LUNAR MISSIONSE. David Beksinski Jr. Master of Science, 2007 Directed By: Professor Mark J. Lewis Department of Aerospace EngineeringWith NASAs renewed focus towards a permanent human pr
Maryland - TOMOS - 1903
1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M
Maryland - TOMOS - 8712
1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M1990AJ.100.1073M
Maryland - TOMOS - 1028
The Role of Children in the Design of New TechnologyAllison Druin University of Maryland Institute for Advanced Computer Studies Human-Computer Interaction Lab College of Education, Human Development Department allisond@umiacs.umd.eduChildren play
Maryland - TOMOS - 1903
The Role of Children in the Design of New TechnologyAllison Druin University of Maryland Institute for Advanced Computer Studies Human-Computer Interaction Lab College of Education, Human Development Department allisond@umiacs.umd.eduChildren play
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:INFLUENCING CONSUMERS PREFERENCES: THE EFFECTS OF MENTAL CONSTRUAL AND MODE OF INFORMATION PROCESSING Debora Viana Thompson, Doctor of Philosophy, 2006.Directed By:Professor Roland T. Rust and Professor Rebecca W. Ha
Maryland - TOMOS - 3384
ABSTRACTTitle of Document:INFLUENCING CONSUMERS PREFERENCES: THE EFFECTS OF MENTAL CONSTRUAL AND MODE OF INFORMATION PROCESSING Debora Viana Thompson, Doctor of Philosophy, 2006.Directed By:Professor Roland T. Rust and Professor Rebecca W. Ha
Maryland - TOMOS - 1903
Methods for Adjusting U.S. Geological Survey Rural Regression Peak Discharges in an Urban Setting1970Forest Agriculture Urban1980 1990 2000Scientific Investigations Report 2006-5270U.S. Department of the Interior U.S. Geological SurveyCove
Maryland - TOMOS - 7135
Methods for Adjusting U.S. Geological Survey Rural Regression Peak Discharges in an Urban Setting1970Forest Agriculture Urban1980 1990 2000Scientific Investigations Report 2006-5270U.S. Department of the Interior U.S. Geological SurveyCove
Maryland - TOMOS - 1903
ABSTRACTTitle:Classifying Attitude by Topic Aspect for English and Chinese Document Collections Yejun Wu, Doctor of Philosophy, 2008Dissertation directed by:Professor Douglas W. Oard College of Information Studies & Institute for Advanced Com
Maryland - TOMOS - 8150
ABSTRACTTitle:Classifying Attitude by Topic Aspect for English and Chinese Document Collections Yejun Wu, Doctor of Philosophy, 2008Dissertation directed by:Professor Douglas W. Oard College of Information Studies & Institute for Advanced Com
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:COLLABORATIVE PROCESSES OF A PROFESSIONAL DEVELOPMENT SCHOOL PARTNERSHIP Teresa Ann Via, Ed.D. 2008Directed By:Professor Hanne B. Mawhinney, Department of Education, Policy, and LeadershipThis qualitative case stud
Maryland - TOMOS - 8155
ABSTRACTTitle of Document:COLLABORATIVE PROCESSES OF A PROFESSIONAL DEVELOPMENT SCHOOL PARTNERSHIP Teresa Ann Via, Ed.D. 2008Directed By:Professor Hanne B. Mawhinney, Department of Education, Policy, and LeadershipThis qualitative case stud
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:SOCIO-TECHNICAL TRANSITION AS A COEVOLUTIONARY PROCESS: INNOVATION AND THE ROLE OF NICHE MARKETS IN THE TRANSITION TO MOTOR VEHICLES Alicia K. Birky, Doctor of Philosophy, 2008Directed By:Professor Matthias Ruth Scho
Maryland - TOMOS - 8157
ABSTRACTTitle of Document:SOCIO-TECHNICAL TRANSITION AS A COEVOLUTIONARY PROCESS: INNOVATION AND THE ROLE OF NICHE MARKETS IN THE TRANSITION TO MOTOR VEHICLES Alicia K. Birky, Doctor of Philosophy, 2008Directed By:Professor Matthias Ruth Scho
Maryland - TOMOS - 1903
ABSTRACTTitle of Dissertation:KOREAN PARENTS AND ADOLESCENTS REPORTS OF PARENTING STYLES: A DEVELOPMENTAL STUDY Angel Hayoung Kim, Ph. D., 2008Dissertation directed by:Professor Kenneth H. Rubin Department of Human DevelopmentThe main purpo
Maryland - TOMOS - 8158
ABSTRACTTitle of Dissertation:KOREAN PARENTS AND ADOLESCENTS REPORTS OF PARENTING STYLES: A DEVELOPMENTAL STUDY Angel Hayoung Kim, Ph. D., 2008Dissertation directed by:Professor Kenneth H. Rubin Department of Human DevelopmentThe main purpo
Maryland - TOMOS - 1903
Drexel University, the University of Maryland, and their Libraries Experiences Collaborating with Various Research ProgramsJay Bhatt1, Joanne Ferroni2, Bob Kackley3, and Dorilona Rose41 2Drexel University, W. W. Hagerty Library, bhattjj@drexel.ed
Maryland - TOMOS - 8372
Drexel University, the University of Maryland, and their Libraries Experiences Collaborating with Various Research ProgramsJay Bhatt1, Joanne Ferroni2, Bob Kackley3, and Dorilona Rose41 2Drexel University, W. W. Hagerty Library, bhattjj@drexel.ed
Maryland - TOMOS - 1903
ABSTRACTTitle of Dissertation:BIOLOGICAL CHARACTERIZATION OF RECD MUTANTS IN DEINOCOCCUS RADIODURANSMatthew David Servinsky, Doctor of Philosophy, 2008Dissertation directed by:Professor Douglas A. Julin Department of Chemistry and Biochemis
Maryland - TOMOS - 8482
ABSTRACTTitle of Dissertation:BIOLOGICAL CHARACTERIZATION OF RECD MUTANTS IN DEINOCOCCUS RADIODURANSMatthew David Servinsky, Doctor of Philosophy, 2008Dissertation directed by:Professor Douglas A. Julin Department of Chemistry and Biochemis
Maryland - TOMOS - 1903
ABSTRACTTitle of dissertation:THE ROLE OF COMMUNICATION, LIFE ROLE COMMITMENTS, AND SEXIST IDEOLOGIES IN DUAL-EARNER MARRIAGES Catherine Mary Sullivan, Doctor of Philosophy, 2008Dissertation directed by:Professor Mary Ann Hoffman Counseling P
Maryland - TOMOS - 8485
ABSTRACTTitle of dissertation:THE ROLE OF COMMUNICATION, LIFE ROLE COMMITMENTS, AND SEXIST IDEOLOGIES IN DUAL-EARNER MARRIAGES Catherine Mary Sullivan, Doctor of Philosophy, 2008Dissertation directed by:Professor Mary Ann Hoffman Counseling P
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:Trapped Wayland B Anderson, Master of Fine Arts, 2007Directed By:Visiting Associate Professor and Director of Graduate Studies in Dance, Karen Bradley, Dance DepartmentThe full-length contemporary ballet Trapped us
Maryland - TOMOS - 6919
ABSTRACTTitle of Document:Trapped Wayland B Anderson, Master of Fine Arts, 2007Directed By:Visiting Associate Professor and Director of Graduate Studies in Dance, Karen Bradley, Dance DepartmentThe full-length contemporary ballet Trapped us
Maryland - TOMOS - 1903
ABSTRACTTitle of Dissertation:GRICEAN EFFECTS IN SELF-ADMINISTERED SURVEYS Ting Yan, Doctor of Philosophy, 2005Dissertation directed by:Professor Roger Tourangeau Joint Program in Survey MethodologyDespite the best efforts of questionnaire
Maryland - TOMOS - 3080
ABSTRACTTitle of Dissertation:GRICEAN EFFECTS IN SELF-ADMINISTERED SURVEYS Ting Yan, Doctor of Philosophy, 2005Dissertation directed by:Professor Roger Tourangeau Joint Program in Survey MethodologyDespite the best efforts of questionnaire
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:TOWARDS AN INTEGRATED SYSTEM FOR VEGETATION FIRE MONITORING IN THE AMAZON BASIN Wilfrid Schroeder, Doctor of Philosophy, 2008Directed By:Professor Christopher O. Justice Department of GeographyBiomass burning is a
Maryland - TOMOS - 8168
ABSTRACTTitle of Document:TOWARDS AN INTEGRATED SYSTEM FOR VEGETATION FIRE MONITORING IN THE AMAZON BASIN Wilfrid Schroeder, Doctor of Philosophy, 2008Directed By:Professor Christopher O. Justice Department of GeographyBiomass burning is a
Maryland - TOMOS - 1903
AbstractTitle of Dissertation:The Star Formation History of Low Surface Brightness GalaxiesJi Hoon Kim, Doctor of Philosophy, 2007Dissertation directed by: Professor Stacy S. McGaugh Department of AstronomyThe star formation histories of low
Maryland - TOMOS - 7646
AbstractTitle of Dissertation:The Star Formation History of Low Surface Brightness GalaxiesJi Hoon Kim, Doctor of Philosophy, 2007Dissertation directed by: Professor Stacy S. McGaugh Department of AstronomyThe star formation histories of low
Maryland - TOMOS - 1903
ABSTRACTTitle of Dissertation:INVESTIGATING DIFFERENTIAL ITEM FUNCTION AMPLIFICATION AND CANCELLATION IN APPLICATION OF ITEM RESPONSE TESTLET MODELS HAN BAO, Doctor of Philosophy, 2007Dissertation directed by:C. Mitchell Dayton Department of
Maryland - TOMOS - 7160
ABSTRACTTitle of Dissertation:INVESTIGATING DIFFERENTIAL ITEM FUNCTION AMPLIFICATION AND CANCELLATION IN APPLICATION OF ITEM RESPONSE TESTLET MODELS HAN BAO, Doctor of Philosophy, 2007Dissertation directed by:C. Mitchell Dayton Department of
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:SULFUR ISOTOPE FRACTIONATIONS IN BIOLOGICAL SYSTEMS: INSIGHT INTO THE PROTEROZOIC BIOSPHERE David T. Johnston, Ph.D. 2007Directed By:Professor J. Farquhar, Department of Geology and ESSICThis study focuses on devel
Maryland - TOMOS - 6714
ABSTRACTTitle of Document:SULFUR ISOTOPE FRACTIONATIONS IN BIOLOGICAL SYSTEMS: INSIGHT INTO THE PROTEROZOIC BIOSPHERE David T. Johnston, Ph.D. 2007Directed By:Professor J. Farquhar, Department of Geology and ESSICThis study focuses on devel
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:POPULATION POLICY AND HUMAN CAPITAL ACCUMULATION IN CHINA Xiaoyu Wu, Ph.D., 2008Directed By:Professor Seth Sanders, Department of EconomicsChina, the most populous country in the world, has had high economic growth
Maryland - TOMOS - 8505
ABSTRACTTitle of Document:POPULATION POLICY AND HUMAN CAPITAL ACCUMULATION IN CHINA Xiaoyu Wu, Ph.D., 2008Directed By:Professor Seth Sanders, Department of EconomicsChina, the most populous country in the world, has had high economic growth
Maryland - TOMOS - 1903
No Real PlaceChoreography by Marissa Guerrero Technical Direction/Lighting Design: Paul D. Jackson Production Assistant: Vannia Ibarguen Set Construction: Stefan Gibson Costume Design: Angella Foster and Marissa Guerrero Sound mix/Music Score by Mar
Maryland - TOMOS - 8089
No Real PlaceChoreography by Marissa Guerrero Technical Direction/Lighting Design: Paul D. Jackson Production Assistant: Vannia Ibarguen Set Construction: Stefan Gibson Costume Design: Angella Foster and Marissa Guerrero Sound mix/Music Score by Mar
Maryland - TOMOS - 1903
NoRealPlaceChoreographybyMarissaGuerrero November8 &9th th,2007AGraduateMFAThesisConcertat8pmUniversityofMaryland/DanceDepartment UniversityofMaryland/DanceDepartment ClariceSmithPerformingArtsCenterDanceTheatreTickets:$20general/$7studen
Maryland - TOMOS - 8089
NoRealPlaceChoreographybyMarissaGuerrero November8 &9th th,2007AGraduateMFAThesisConcertat8pmUniversityofMaryland/DanceDepartment UniversityofMaryland/DanceDepartment ClariceSmithPerformingArtsCenterDanceTheatreTickets:$20general/$7studen
Maryland - TOMOS - 1903
No Real PlaceA Graduate MFA Thesis ConcertNovember 8th and 9th, 2007 at 8pm Clarice Smith Performing Arts Center University of Maryland/Dance Dept. Dance Theatre Choreography by Marissa GuerreroPhoto by Enoch ChanCollaborators/Dancers: Valerie
Maryland - TOMOS - 8089
No Real PlaceA Graduate MFA Thesis ConcertNovember 8th and 9th, 2007 at 8pm Clarice Smith Performing Arts Center University of Maryland/Dance Dept. Dance Theatre Choreography by Marissa GuerreroPhoto by Enoch ChanCollaborators/Dancers: Valerie
Maryland - TOMOS - 1903
AbstractTitle of Document:NO REAL PLACE Marissa D. Guerrero, MFA, 2008Directed by:Professor Meriam Rosen, Department of DanceMy thesis project explored a recurring dream and was based on the physical and metaphysical presentation of windows
Maryland - TOMOS - 8089
AbstractTitle of Document:NO REAL PLACE Marissa D. Guerrero, MFA, 2008Directed by:Professor Meriam Rosen, Department of DanceMy thesis project explored a recurring dream and was based on the physical and metaphysical presentation of windows
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:EXPERIMENTAL STUDY OF THE PARTITIONING OF Cu, Ag, Au, Mo, AND W AMONG PYRRHOTITE AND IMMISCIBLE Fe-S-O AND SILICATE MELTS Michael J. Mengason, Master of Science, 2007Directed By:Professor Philip A. Candela and Associ
Maryland - TOMOS - 7401
ABSTRACTTitle of Document:EXPERIMENTAL STUDY OF THE PARTITIONING OF Cu, Ag, Au, Mo, AND W AMONG PYRRHOTITE AND IMMISCIBLE Fe-S-O AND SILICATE MELTS Michael J. Mengason, Master of Science, 2007Directed By:Professor Philip A. Candela and Associ
Maryland - TOMOS - 1903
ABSTRACTTitle of Dissertation:MULTIDIMENSIONALITY IN THE NAEP SCIENCE ASSESSMENT: SUBSTANTIVE PERSPECTIVES, PSYCHOMETRIC MODELS, AND TASK DESIGN Hua Wei, Doctor of Philosophy, 2008Dissertation Directed by:Professor Robert J. Mislevy Departmen
Maryland - TOMOS - 8048
ABSTRACTTitle of Dissertation:MULTIDIMENSIONALITY IN THE NAEP SCIENCE ASSESSMENT: SUBSTANTIVE PERSPECTIVES, PSYCHOMETRIC MODELS, AND TASK DESIGN Hua Wei, Doctor of Philosophy, 2008Dissertation Directed by:Professor Robert J. Mislevy Departmen
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:VARIABILITY OF TERRESTRIAL CARBON CYCLE AND ITS INTERACTION WITH CLIMATE UNDER GLOBAL WARMING Haifeng Qian, Doctor of Philosophy, 2008Directed By:Professor Ning Zeng Department of Atmospheric and Oceanic ScienceLan
Maryland - TOMOS - 8564
ABSTRACTTitle of Document:VARIABILITY OF TERRESTRIAL CARBON CYCLE AND ITS INTERACTION WITH CLIMATE UNDER GLOBAL WARMING Haifeng Qian, Doctor of Philosophy, 2008Directed By:Professor Ning Zeng Department of Atmospheric and Oceanic ScienceLan
Maryland - TOMOS - 1903
AbstractTitle of Dissertation:Hydrodynamic Models of AGN Feedback in Cooling Core ClustersJohn C. Vernaleo, Doctor of Philosophy, 2008Dissertation directed by: Professor Christopher S. Reynolds Department of AstronomyX-ray observations show t
Maryland - TOMOS - 8465
AbstractTitle of Dissertation:Hydrodynamic Models of AGN Feedback in Cooling Core ClustersJohn C. Vernaleo, Doctor of Philosophy, 2008Dissertation directed by: Professor Christopher S. Reynolds Department of AstronomyX-ray observations show t
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:PERFORMANCE TIP-SHARING: WHEN, AND HOW, DO EMPLOYEES SHARE THEIR INSIGHTS? Meredith F. Burnett, Ph.D., 2006Directed By:Professor Debra L. Shapiro, Department of Management and OrganizationThe purpose of my disserta
Maryland - TOMOS - 4106
ABSTRACTTitle of Document:PERFORMANCE TIP-SHARING: WHEN, AND HOW, DO EMPLOYEES SHARE THEIR INSIGHTS? Meredith F. Burnett, Ph.D., 2006Directed By:Professor Debra L. Shapiro, Department of Management and OrganizationThe purpose of my disserta
Maryland - TOMOS - 1903
!0 k 40 % # ! ( 4 ! w ! | % 4 0 !( m2 %0 2 # 0 # w #! k 4 % 4 % 0 |20 5}1}131'5rl}5}cxxY!3'YFR$53y0x4F52x$1}1x}1g1'3x$3SRS ~ 4 !0( w 6 ~ % k 20k ( 2 4 0 w w 4 0 ~ 2 % 2 % 0 2 20k ( w xY3yx}x4 '}| lR4x}33uR53p1 SR'lx@3tp1S135$@
Maryland - TOMOS - 2080
!0 k 40 % # ! ( 4 ! w ! | % 4 0 !( m2 %0 2 # 0 # w #! k 4 % 4 % 0 |20 5}1}131'5rl}5}cxxY!3'YFR$53y0x4F52x$1}1x}1g1'3x$3SRS ~ 4 !0( w 6 ~ % k 20k ( 2 4 0 w w 4 0 ~ 2 % 2 % 0 2 20k ( w xY3yx}x4 '}| lR4x}33uR53p1 SR'lx@3tp1S135$@
Maryland - TOMOS - 1903
ABSTRACTTitle of dissertation:HECHOS DE ORILLAS: NUEVAS EXPRESIONES DE LA IDENTIDAD JUDEOARGENTINA CONTEMPORNEA Amalia Ran, Doctor of Philosophy, 2007Dissertation directed by:Professor Sal Sosnowski Department of Spanish and PortugueseThe s
Maryland - TOMOS - 6741
ABSTRACTTitle of dissertation:HECHOS DE ORILLAS: NUEVAS EXPRESIONES DE LA IDENTIDAD JUDEOARGENTINA CONTEMPORNEA Amalia Ran, Doctor of Philosophy, 2007Dissertation directed by:Professor Sal Sosnowski Department of Spanish and PortugueseThe s
Maryland - TOMOS - 1903
ABSTRACTTitle of Document:PATHS TO COMPLIANCE: DIFFERING INFLUENCES OF MATERNAL BEHAVIOR IN TEMPERAMENTALLY FEARFUL AND EXUBERANT INFANTS Melissa Marie Ghera, Ph.D., 2007Directed By:Professor Nathan A. Fox, Department of Human DevelopmentTh