A Study on a Single Construct for Events, Aspects, and Behaviors

Total Page:16

File Type:pdf, Size:1020Kb

A Study on a Single Construct for Events, Aspects, and Behaviors A Dissertation Submitted to Department of Creative Informatics, Graduate School of Information Science and Technology, The University of Tokyo A Study on a Single Construct for Events, Aspects, and Behaviors (イベント、アスペクト、ビヘイビアのための 単一言語機構に関する研究) By 莊 永裕 YungYu ZHUANG Supervisor: 千葉 滋 Shigeru CHIBA December 2013, Copyright ⃝c 2013 YungYu ZHUANG. All Rights Reserved. Abstract Programming paradigms are so important that a lot of research activities are devoted to the support for them. How to support the implementation of paradigms can be classified into three types of approaches: by design pat- terns, by dedicated constructs, and by generic constructs. However, none of them are sufficient. Design patterns can be used to implement most paradigms but not all. Furthermore, without language support the code tends to scatter and tangle. Dedicated constructs greatly improve the mod- ularity of code, but also increase the number of constructs in a language supporting multiple paradigms; a large number of constructs complicates the language design. Generic constructs can be considered as a potentially good approach, but the number of supported paradigms in current research is quite limited; existing generic constructs are not flexible enough to support more paradigms. To overcome the problem that existing generic constructs are not flexible enough, this thesis proposes a new generic construct, method slots, based on our observation of the common ground among the implementations of three important paradigms in the real world: OOP, the event-handler paradigm (event-driven programming), the aspect paradigm (aspect-oriented program- ming). The common ground has never been noticed before this thesis since the dedicated constructs for these paradigms were individually developed from the beginning. The observation on the similarities motivates us to extend the methods in JavaScript to method slots, which can be used as methods, events, and advices. To demonstrate how method slots can be used in practice, a Java-based language named DominoJ is proposed with a compiler implementation. We then evaluate DominoJ by comparing with existing languages, running benchmarks for it, and rewriting programs as case studies. The concept of method slots is very simple and easy to extend. To support iii this argument, we demonstrate how to extend method slots by taking the ex- ample of the reactive paradigm (functional-reactive programming). We first compare the reactive paradigm with the most similar one in the paradigms supported by method slots: the event-handler paradigm. We find that the major difference between them is whether the event composition is automatic or not. Then we discuss the definitions for event composition in existing event mechanisms, and get the conclusion that existing event mechanisms lack an inference-based definition to automatically select events for a higher-level event. This thesis proposes such an inference-based definition by adding only one more operator for method slots. How the operator can be used for the reactive paradigm is presented with a feasible implementation and discussed in detail to clarify the limitations. iv Acknowledgments First of all, I would like to express my deep gratitude to my supervisor, Prof. Shigeru Chiba. He always gives me great advice on doing research and guided me through the process of this thesis. I learned a lot from him, especially how to study and present. He is also the person who kindly gave my the chance to start my research again in Japan. I also would like to thank the thesis committees: Prof. Hiroshi Esaki, Prof. Kei Hiraki, Prof. Mary Inaba, Prof. Hideki Nakayama, Prof. Hidehiko Masuhara, and Prof. Shigeru Chiba. They gave me valuable comments on not only the contents of this research but also the arguments of this thesis. My grateful thanks go to all my colleagues in Chiba's group. In particular, I would like to thank Prof. Yoshiki Sato, Michihiro Horie, Masayuki Ioki, Shumpei Akai, Fuminobu Takeyama, Maximilian Pascal Scherr, Kazuhiro Ichikawa, and Hiroshi Yamaguchi. They gave me many help in both life and research. I would like to thank all my family. I always get encouragement from my parents, my elder brother, and my wife's parents. I am very grateful to my wife; it is she who encouraged me to come to Japan. She takes care of our daughter alone to let me concentrate on my research. I was even unable to accompany her when our son was born. Without her support it is impossible to finish this thesis. Finally I appreciate the Development of System Software Technologies for post-Peta Scale High Performance Computing project from JST CREST and the CompView Global COE program from JSPS for the financial support (as a research assistant), and the scholarship from Interchange Association (Japan). They supported me to complete my doctoral program. v Contents 1 Introduction 1 1.1 Motivating problems ........................ 2 1.2 Solution by this thesis ....................... 4 1.3 Position of this thesis ....................... 6 1.4 Structure of this thesis ....................... 7 2 Backgrounds 9 2.1 Programming paradigms ...................... 9 2.1.1 Object-oriented programming ............... 10 2.1.2 The event-handler paradigm ................ 17 2.1.3 The aspect paradigm ................... 19 2.1.4 The reactive paradigm ................... 25 2.2 Supporting the implementation of paradigms ........... 26 2.2.1 Design patterns ...................... 26 2.2.2 Dedicated constructs and the unification ......... 30 2.2.3 Generic constructs and the integration .......... 31 2.3 Comparing the three approaches .................. 32 3 Method Slots 37 3.1 Introduction ............................ 37 3.2 Motivation ............................. 38 3.3 DominoJ .............................. 42 3.3.1 Method slots ........................ 42 3.3.2 Assignment operators for method slots .......... 45 3.4 Evaluation ............................. 51 3.4.1 The implementation .................... 51 3.4.2 Microbenchmarks ..................... 56 CONTENTS vii 3.4.3 Compiling and running the DaCapo benchmark suite ... 59 3.4.4 Method slots and design patterns ............. 64 3.4.5 The event-handler paradigm ................ 73 3.4.6 The aspect paradigm ................... 79 3.4.7 Summary of the coverage ................. 84 3.4.8 Event-handler vs. Aspect ................. 85 3.5 Case study ............................. 86 3.5.1 The events and delegates examples in C# tutorials .... 86 3.5.2 The Observer pattern in JHotDraw ............ 94 3.5.3 The aspects in AspectTetris ................ 102 3.6 Related work ............................ 108 3.7 Summary .............................. 111 4 An Extension for Supporting the Reactive Paradigm 113 4.1 Introduction ............................ 113 4.2 Emulating the reactive paradigm by the event-handler paradigm . 114 4.2.1 An example of the reactive paradigm ........... 115 4.2.2 The event-handler paradigm can do the same thing .... 116 4.2.3 The major difference between the two paradigms ..... 118 4.2.4 The definitions of higher-level events in existing event mechanisms ........................ 118 4.2.5 The lack of inference rules ................. 123 4.3 ReactiveDominoJ .......................... 123 4.3.1 Using DominoJ for the event-handler paradigm ...... 123 4.3.2 The braces operator for the inference-based definition .. 124 4.3.3 The implementation of the reactive extension ....... 130 4.4 Discussion ............................. 139 4.4.1 Preliminary microbenchmarks ............... 139 4.4.2 Comparing with DominoJ ................. 141 4.4.3 Comparing with AspectJ .................. 142 4.4.4 For the reactive paradigm ................. 143 4.5 Related work ............................ 149 4.6 Summary .............................. 151 5 Conclusions 153 Bibliography 159 viii CONTENTS List of Figures 2.1 The objects in the music player example ............. 11 2.2 The model of the music player example .............. 11 2.3 The musicPlayer object can be replaced with the musicPlayerH object ............................... 12 2.4 The model of the media player modified from the music player example .............................. 13 2.5 The class hierarchy for mediaEngine of the media player example 14 3.1 In JavaScript, both an integer and a function are fields on an object 42 3.2 A method slot is an extended field that can keep more than one function closure .......................... 43 3.3 The keywords $caller and $predecessor .............. 51 3.4 The average time of continuously calling a method in Java and DominoJ, including the reflection version ............. 58 3.5 The average time of using the operators for method slots .... 59 3.6 The average execution time of the 12 DaCapo benchmarks com- piled by the three compilers .................... 62 3.7 The box plot of the execution time for the DaCapo benchmarks . 63 3.8 The execution order of the shape example in EScala and DominoJ 78 3.9 Adding another advice to the shape example in AspectJ and DominoJ .............................. 83 3.10 Calling proceed in AspectJ and DominoJ ............. 83 3.11 The design decision of EScala, AspectJ, and DominoJ ...... 85 4.1 An example of spreadsheet ..................... 116 4.2 The DominoJ version needs the explicit bindings for the event composition of this.changed .................... 128 LIST OF FIGURES ix 4.3 According to the default closure of update, this.update depends on b1.getValue and c1.getValue .................. 128 4.4 According to Listing 4.3, getValue
Recommended publications
  • Adult Coloring Journal : Health & Wellness (Pet Illustrations, Pastel Floral)
    ADULT COLORING JOURNAL : HEALTH & WELLNESS (PET ILLUSTRATIONS, PASTEL FLORAL) Author: Courtney Wegner Number of Pages: 162 pages Published Date: 20 May 2016 Publisher: Adult Coloring Journal Press Publication Country: United States Language: English ISBN: 9781357676728 DOWNLOAD: ADULT COLORING JOURNAL : HEALTH & WELLNESS (PET ILLUSTRATIONS, PASTEL FLORAL) Adult Coloring Journal : Health & Wellness (Pet Illustrations, Pastel Floral) PDF Book For instructors, this is a great book if they don t have their own class notes one can teach straight from the book. The Art and Science of Photovoltaics series was developed to fill this education gap. " Human being is inseparable from animality. One of the core underpinnings of Eclipse is SWT, the Standard Widget Toolkit. This book was published as a special issue of Development in Practice. Visit a dinosaur dig site or a famous dinosaur track site-- and even make your own cast of fossilized tracks. This ground breaking work should be of special interest to life science professionals working in the areas of knowledge management, data mining, and visualization. ABOUT THE SERIES: The Very Short Introductions series from Oxford University Press contains hundreds of titles in almost every subject area. Built around a comprehensive directory of professional qualifying bodies each professional area is described in depth and its qualifications identified and explained. Another force behind successful habit change is belief in the ability to change the habit. Each play introduces students to a specific world culture by looking at holidays celebrated in that culture. You'll discover fresh and re-energized lessons, completely updated research, and vibrant vignettes from new colleagues and old friends who have as much passion for their subjects as you do.
    [Show full text]
  • Customizing Eclipse RCP Applications Techniques to Use with SWT and Jface
    Customizing Eclipse RCP applications Techniques to use with SWT and JFace Skill Level: Intermediate Scott Delap ([email protected]) Desktop/Enterprise Java Consultant Annas Andy Maleh ([email protected]) Consultant 27 Feb 2007 Most developers think that an Eclipse Rich Client Platform (RCP) application must look similar in nature to the Eclipse integrated development environment (IDE). This isn't the case, however. This tutorial will explain a number of simple techniques you can use with the Standard Widget Toolkit (SWT) and JFace to create applications that have much more personality than the Eclipse IDE. Section 1. Before you start About this tutorial This tutorial will explain a number of UI elements that can be changed in Eclipse RCP, JFace, and SWT. Along the way, you will learn about basic changes you can make, such as fonts and colors. You will also learn advanced techniques, including how to create custom wizards and section headers. Using these in conjunction should provide you the ability to go from a typical-looking Eclipse RCP application to a distinctive but visually appealing one. Prerequisites Customizing Eclipse RCP applications © Copyright IBM Corporation 1994, 2008. All rights reserved. Page 1 of 40 developerWorks® ibm.com/developerWorks You should have a basic familiarity with SWT, JFace, and Eclipse RCP. System requirements To run the examples, you need a computer capable of adequately running Eclipse V3.2 and 50 MB of free disk space. Section 2. Heavyweight and lightweight widgets Before diving into techniques that can be used to modify SWT, JFace, and Eclipse RCP in general, it's important to cover the fundamental characteristics of SWT and how they apply to the appearance of the widget set.
    [Show full text]
  • IBMが注力するオープンソース・プロジェクト ― Eclipseとdojo Toolkit ―
    解 説 2 IBMが注力するオープンソース・プロジェクト ― EclipseとDojo Toolkit ― 昨今のソフトウェア 開 発における重 要な要 素である Article 2 オープンソース・ソフトウェア。中でも、IBM が注力す Open Source Projects that IBM Invests in るオープンソース・プロジェクトとして、Eclipse と Dojo - Eclipse and Dojo Toolkit - Toolkit があります。Eclipse は、JavaTM ベースの統合 Open source software is an important factor in software 開発環境としての地位を確立し、さらにリッチ・クライア development today. Among many open source projects, IBM ントのプラットフォームとして 、 また、 サ ー バー・ サイドの is investing in the Eclipse and the Dojo Toolkit. The Eclipse is プラグイン技術として利用範囲を広げています。 一方、 dominant in the Java IDE area and continues to evolve as well as a rich client platform and a server-side plug-in Dojo Toolkit は、Web ブラウザー上で動作するリッチ・ technology, while the Dojo Toolkit is an emerging open インターネット・アプリケーションの開発に欠かせない、 source project that provides JavaScript libraries for developing rich internet applications. This article introduces 高機能 JavaScriptTM ライブラリーとして、製品での利 the latest activities and features on both open source 用が進んでいる注目株のオープンソース・プロジェクトで projects. す。本稿では、この二つのオープンソース・プロジェクト の動向をご紹介します。 ❶ ますます重要になるオープンソース ア開発へとそのターゲット・エリアを広 げ ています 。さらには、 開発環境としてだけではなく、 例 えばリッチ・クライアントの Linux®をはじめとしたオープンソースの潮流は、ソフト 基盤としての活用や、サーバー環境での活用もすでに始 ウェア開発の現場で注目され始めた黎明期から、質・種 まって いるの で す ( 図1)。 類ともに飛躍的な進歩を遂げています。オープンソースの 利用は、システム開発期間の短縮やコミュニティーによる Java開発環境から 統合開発環境、 Eclipse3.4 品質向上といったコスト削 減 のメリットに 加 えて 、 特 定 の ベ デスクトップ・プラットフォームへ Eclipse3.3 ンダーの技術に対する依存を避け、将来にわたる柔軟な Eclipse3.2 Web開発 システム構築のための重要な選択肢となっています。 Eclipse3.1 本稿では、そのようなオ ープンソース・プロジェクトの 中 組み込みデバイス開発 Eclipse3.0 から、IBM が注力する「Eclipse」と「Dojo Toolkit」 リッチ・クライアント Eclipse2.0
    [Show full text]
  • Eclipse (Software) 1 Eclipse (Software)
    Eclipse (software) 1 Eclipse (software) Eclipse Screenshot of Eclipse 3.6 Developer(s) Free and open source software community Stable release 3.6.2 Helios / 25 February 2011 Preview release 3.7M6 / 10 March 2011 Development status Active Written in Java Operating system Cross-platform: Linux, Mac OS X, Solaris, Windows Platform Java SE, Standard Widget Toolkit Available in Multilingual Type Software development License Eclipse Public License Website [1] Eclipse is a multi-language software development environment comprising an integrated development environment (IDE) and an extensible plug-in system. It is written mostly in Java and can be used to develop applications in Java and, by means of various plug-ins, other programming languages including Ada, C, C++, COBOL, Perl, PHP, Python, Ruby (including Ruby on Rails framework), Scala, Clojure, and Scheme. The IDE is often called Eclipse ADT for Ada, Eclipse CDT for C/C++, Eclipse JDT for Java, and Eclipse PDT for PHP. The initial codebase originated from VisualAge.[2] In its default form it is meant for Java developers, consisting of the Java Development Tools (JDT). Users can extend its abilities by installing plug-ins written for the Eclipse software framework, such as development toolkits for other programming languages, and can write and contribute their own plug-in modules. Released under the terms of the Eclipse Public License, Eclipse is free and open source software. It was one of the first IDEs to run under GNU Classpath and it runs without issues under IcedTea. Eclipse (software) 2 Architecture Eclipse employs plug-ins in order to provide all of its functionality on top of (and including) the runtime system, in contrast to some other applications where functionality is typically hard coded.
    [Show full text]
  • Download the Index
    Dewsbury.book Page 555 Wednesday, October 31, 2007 11:03 AM Index Symbols addHistoryListener method, Hyperlink wid- get, 46 $wnd object, JSNI, 216 addItem method, MenuBar widget, 68–69 & (ampersand), in GET and POST parameters, addLoadListener method, Image widget, 44 112–113 addMessage method, ChatWindowView class, { } (curly braces), JSON, 123 444–445 ? (question mark), GET requests, 112 addSearchResult method JUnit test case, 175 SearchResultsView class, 329 A addSearchView method, MultiSearchView class, 327 Abstract Factory pattern, 258–259 addStyleName method, connecting GWT widgets Abstract methods, 332 to CSS, 201 Abstract Window Toolkit (AWT), Java, 31 addToken method, handling back button, 199 AbstractImagePrototype object, 245 addTreeListener method, Tree widget, 67 Abstraction, DAOs and, 486 Adobe Flash and Flex, 6–7 AbstractMessengerService Aggregator pattern Comet, 474 defined, 34 Jetty Continuations, 477 Multi-Search application and, 319–321 action attribute, HTML form tag, 507 sample application, 35 Action-based web applications Aggregators, 320 overview of, 116 Ajax (Asynchronous JavaScript and XML) PHP scripts for building, 523 alternatives to, 6–8 ActionObjectDAO class, 527–530 application development and, 14–16 Actions, server integration with, 507–508 building web applications and, 479 ActionScript, 6 emergence of, 3–5 ActiveX, 7 Google Gears for storage, 306–309 Add Import command Same Origin policy and, 335 creating classes in Eclipse, 152 success and limitations of, 5–6 writing Java code using Eclipse Java editor,
    [Show full text]
  • The Challenge of Cross Platform GUI Test Automation
    Write Once, Test Everywhere The Challenge of Cross Platform GUI Test Automation Gregor Schmid Quality First Software GmbH [email protected] Tel: +49 8171 919870 © 2005 Quality First Software GmbH 30.06.05 1 Overview ● Quality First Software GmbH ● Cross Platform Development ● Java GUI Technologies: Web, AWT, Swing, SWT ● GUI Testing in General ● GUI Test Automation, its ROI and Cross-Platform Aspects ● Available Automation Tools ● Specifics of Swing Test Automation ● Specifics of SWT Automation ● Results ● Questions... © 2005 Quality First Software GmbH 30.06.05 2 Quality First Software GmbH ● Established 2001 ● Primary product: qftestJUI – The Java GUI Testtool ● Employees: 5 ● Based near Munich ● Committed to quality ● Focus on Java and test automation ● Over 200 customers worldwide in all kind of business categories © 2005 Quality First Software GmbH 30.06.05 3 References © 2005 Quality First Software GmbH 30.06.05 4 Wanted: Swiss Distributor © 2005 Quality First Software GmbH 30.06.05 5 Cross Platform GUI Development ● Windows is still the predominant target platform. ● Various non-Java GUI toolkits available, tcl/tk, gtk, qt, wxWindows... ● Java drastically simplifies cross platform development. ● Java IDEs are themselves available on multiple platforms. ● „Write once, run everywhere“ implies „Write once, test everywhere“. ● Programmer's paradise becomes tester's hell... © 2005 Quality First Software GmbH 30.06.05 6 Java GUI Technologies: Web ● Server side Java, client side HTML and Javascript. ● Very portable ● No deployment effort. ● Limited functionality (thin client). ● Browser compatibility issues. © 2005 Quality First Software GmbH 30.06.05 7 Java GUI Technologies: AWT (Abstract Widget Toolkit) ● Very limited set of components.
    [Show full text]
  • Silk Test 19.5
    Silk Test 19.5 Silk4NET User Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright © Micro Focus 1992-2018. All rights reserved. MICRO FOCUS, the Micro Focus logo and Silk Test are trademarks or registered trademarks of Micro Focus IP Development Limited or its subsidiaries or affiliated companies in the United States, United Kingdom and other countries. All other marks are the property of their respective owners. 2018-10-23 ii Contents Licensing Information ........................................................................................9 Silk4NET ............................................................................................................10 Do I Need Administrator Privileges to Run Silk4NET? ......................................................10 Automation Under Special Conditions (Missing Peripherals) ............................................10 Silk Test Product Suite ...................................................................................................... 12 Enabling or Disabling Usage Data Collection ....................................................................13 Contacting Micro Focus .................................................................................................... 14 Information Needed by Micro Focus SupportLine .................................................. 14 What's New in Silk4NET ...................................................................................15 UI Automation Support ......................................................................................................15
    [Show full text]
  • Developing Java™ Web Applications
    ECLIPSE WEB TOOLS PLATFORM the eclipse series SERIES EDITORS Erich Gamma ■ Lee Nackman ■ John Wiegand Eclipse is a universal tool platform, an open extensible integrated development envi- ronment (IDE) for anything and nothing in particular. Eclipse represents one of the most exciting initiatives hatched from the world of application development in a long time, and it has the considerable support of the leading companies and organ- izations in the technology sector. Eclipse is gaining widespread acceptance in both the commercial and academic arenas. The Eclipse Series from Addison-Wesley is the definitive series of books dedicated to the Eclipse platform. Books in the series promise to bring you the key technical information you need to analyze Eclipse, high-quality insight into this powerful technology, and the practical advice you need to build tools to support this evolu- tionary Open Source platform. Leading experts Erich Gamma, Lee Nackman, and John Wiegand are the series editors. Titles in the Eclipse Series John Arthorne and Chris Laffra Official Eclipse 3.0 FAQs 0-321-26838-5 Frank Budinsky, David Steinberg, Ed Merks, Ray Ellersick, and Timothy J. Grose Eclipse Modeling Framework 0-131-42542-0 David Carlson Eclipse Distilled 0-321-28815-7 Eric Clayberg and Dan Rubel Eclipse: Building Commercial-Quality Plug-Ins, Second Edition 0-321-42672-X Adrian Colyer,Andy Clement, George Harley, and Matthew Webster Eclipse AspectJ:Aspect-Oriented Programming with AspectJ and the Eclipse AspectJ Development Tools 0-321-24587-3 Erich Gamma and
    [Show full text]
  • Juice: an SVG Rendering Peer for Java Swing
    San Jose State University SJSU ScholarWorks Master's Projects Master's Theses and Graduate Research 2006 Juice: An SVG Rendering Peer for Java Swing Ignatius Yuwono San Jose State University Follow this and additional works at: https://scholarworks.sjsu.edu/etd_projects Part of the Computer Sciences Commons Recommended Citation Yuwono, Ignatius, "Juice: An SVG Rendering Peer for Java Swing" (2006). Master's Projects. 123. DOI: https://doi.org/10.31979/etd.qc2u-e2wj https://scholarworks.sjsu.edu/etd_projects/123 This Master's Project is brought to you for free and open access by the Master's Theses and Graduate Research at SJSU ScholarWorks. It has been accepted for inclusion in Master's Projects by an authorized administrator of SJSU ScholarWorks. For more information, please contact [email protected]. JUICE: AN SVG RENDERING PEER FOR JAVA SWING A Project Report Presented to The Faculty of the Department of Computer Science San Jose State University In Partial Fulfillment of the Requirements for the Degree Masters of Science by Ignatius Yuwono May 2006 © 2006 Ignatius Yuwono ALL RIGHTS RESERVED ABSTRACT SVG—a W3C XML standard—is a relatively new language for describing low-level vector drawings. Due to its cross-platform capabilities and support for events, SVG may potentially be used in interactive GUIs/graphical front-ends. However, a complete and full-featured widget set for SVG does not exist at the time of this writing. I have researched and implemented a framework which retargets a complete and mature raster- based widget library—the JFC Swing GUI library—into a vector-based display substrate: SVG.
    [Show full text]
  • Table of Contents
    A Comprehensive Introduction to Vista Operating System Table of Contents Chapter 1 - Windows Vista Chapter 2 - Development of Windows Vista Chapter 3 - Features New to Windows Vista Chapter 4 - Technical Features New to Windows Vista Chapter 5 - Security and Safety Features New to Windows Vista Chapter 6 - Windows Vista Editions Chapter 7 - Criticism of Windows Vista Chapter 8 - Windows Vista Networking Technologies Chapter 9 -WT Vista Transformation Pack _____________________ WORLD TECHNOLOGIES _____________________ Abstraction and Closure in Computer Science Table of Contents Chapter 1 - Abstraction (Computer Science) Chapter 2 - Closure (Computer Science) Chapter 3 - Control Flow and Structured Programming Chapter 4 - Abstract Data Type and Object (Computer Science) Chapter 5 - Levels of Abstraction Chapter 6 - Anonymous Function WT _____________________ WORLD TECHNOLOGIES _____________________ Advanced Linux Operating Systems Table of Contents Chapter 1 - Introduction to Linux Chapter 2 - Linux Kernel Chapter 3 - History of Linux Chapter 4 - Linux Adoption Chapter 5 - Linux Distribution Chapter 6 - SCO-Linux Controversies Chapter 7 - GNU/Linux Naming Controversy Chapter 8 -WT Criticism of Desktop Linux _____________________ WORLD TECHNOLOGIES _____________________ Advanced Software Testing Table of Contents Chapter 1 - Software Testing Chapter 2 - Application Programming Interface and Code Coverage Chapter 3 - Fault Injection and Mutation Testing Chapter 4 - Exploratory Testing, Fuzz Testing and Equivalence Partitioning Chapter 5
    [Show full text]
  • Universidad Técnica Del Norte Facultad De
    UNIVERSIDAD TÉCNICA DEL NORTE FACULTAD DE INGENIERÍA EN CIENCIAS APLICADAS CARRERA DE INGENIERÍA EN SISTEMAS COMPUTACIONALES PROYECTO PREVIO A LA OBTENCIÓN DEL TÍTULO DE INGENIERO EN SISTEMAS COMPUTACIONALES TEMA: IMPLEMENTACIÓN WEB PARA LA GESTIÓN Y SEGUIMIENTO ACADÉMICO ESTUDIANTIL DEL CENTRO EDUCATIVO “ÁLAMOS” APLICATIVO: SISTEMA DE GESTIÓN Y SEGUIMIENTO ACADÉMICO SAG IMPLEMENTADO MEDIANTE EL FRAMEWORK GOOGLE WEB TOOLKIT PHP Y MYSQL AUTOR: Luis Fabián Rivera Onofre DIRECTORA: Ing. Nancy Cervantes Ibarra – Ecuador 2012 CERTIFICADO DE CESIÓN DE DERECHOS DE AUTOR Yo LUIS FABIÁN RIVERA ONOFRE con cédula de identidad Nro. 100308327-4, manifiesto mi voluntad de ceder a la Universidad Técnica del Norte los derechos patrimoniales consagrados en la Ley de Propiedad Intelectual del Ecuador, artículos 4, 5, 6, en calidad de autor del trabajo de grado denominado “IMPLEMENTACIÓN WEB PARA LA GESTIÓN Y SEGUIMIENTO ACADÉMICO ESTUDIANTIL DEL CENTRO EDUCATIVO “ÁLAMOS” ”, que ha sido desarrollado para optar por el título de Ingeniero en Sistemas Computacionales, en la Universidad Técnica del Norte, quedando la Universidad facultada para ejercer plenamente los derechos cedidos anteriormente. En mi condición de autor me reservo los derechos morales de la obra antes citada. En concordancia suscribo este documento en el momento que hago entrega del trabajo final en formato impreso y digital a la Biblioteca de la Universidad Técnica del Norte. (Firma):.………………………………………….. Nombre: LUIS FABIÁN RIVERA ONOFRE Cédula: 100308327-4 Ibarra, a los 6 días del mes de enero de 2012 II AUTORIZACIÓN DE USO Y PUBLICACIÓN A FAVOR DE LA UNIVERSIDAD TÉCNICA DEL NORTE 1. IDENTIFICACIÓN DE LA OBRA La Universidad Técnica del Norte dentro del proyecto de Repositorio Digital Institucional, determina la necesidad de disponer de textos completos en formato digital con la finalidad de apoyar los procesos de investigación, docencia y extensión de la Universidad.
    [Show full text]
  • Eclipse's Rich Client Platform, Part 1: Getting Started Skill Level: Intermediate
    Eclipse's Rich Client Platform, Part 1: Getting started Skill Level: Intermediate Jeff Gunther ([email protected]) General Manager Intalgent Technologies 27 Jul 2004 The first in a two-part "Eclipse's Rich Client Platform" series, this tutorial explores the basic design goals of the Eclipse Rich Client Platform (RCP) and how it fits within a developer's toolkit. After introducing this platform and exploring why it is a viable framework to deploy distributed client-side applications, this tutorial demonstrates how to construct a basic RCP application. Section 1. Before you start The first part of a two-part series, this tutorial explores Eclipse's Rich Client Platform (RCP). An example application shows you how to assemble an RCP to create an elegant, client-side interface for your own business applications. The application creates a front end for the Google API and gives you the ability to query and display search results. Having an application that demonstrates some of these technologies in action provides an understanding of the platform and its usefulness within some of your projects. About this tutorial You'll explore each one of these complementary technologies in detail over the course of this tutorial. After a brief introduction to these technologies, the tutorial explores the code and supporting files so you can grasp how to construct an RCP application. If you're new to Eclipse or its complementary technologies, refer to the Resources at the end of this tutorial for more information. Prerequisites Getting started © Copyright IBM Corporation 1994, 2008. All rights reserved. Page 1 of 31 developerWorks® ibm.com/developerWorks You should understand how to navigate Eclipse 3.0 and have a working knowledge of Java™ technology to follow along.
    [Show full text]