A Case Study on Model-Driven and Conventional Software Development: The Palladio Editor
|
|
|
- Claud Lawrence
- 9 years ago
- Views:
Transcription
1 A Case Study on Model-Driven and Conventional Software Development: The Palladio Editor Klaus Krogmann, Steffen Becker University of Karlsruhe (TH) {krogmann, Abstract: The actual benefits of model-driven approaches compared to code-centric development have not been systematically investigated. This paper presents a case study in which functional identical software was once developed in a code-centric, conventional style and once using Eclipse-based model-driven development tools. In our specific case, the model-driven approach could be carried in 11% of the time of the conventional approach, while simultaneously improving code quality. Keywords: MDD, DSL, model-driven software development, case study 1 Introduction During the last decade, model-driven development has made enormous progress and supporting tools have improved significantly. Current tools form a second generation of instruments to support model-driven development. However, there is a lack of comparisons of new, model-driven development techniques with code-centric software development in terms of efficiency, code quality, and time effort. The contribution of this paper is a case study on code-centric and model-driven software development. Software with the same functionality an implementation of a software component meta-model and a graphical editor for that meta-model has been created twice: by hand and with support of recent model-driven development tools. The case study has not been designed as a controlled experiment (i.e, we could not control some factors influencing the results of our study). Nonetheless, we found large differences among both approaches in terms of software development efficiency, time effort, and quality of code. Those differences are worth reporting despite the limitations of the case study (see section 4). This case study allows to draw conclusions for other software development projects of the same domain (graphical editors for a meta-modelled domain). By this, the paper tries to lower the lack of knowledge on the actual benefits and limitations of specific approaches in software engineering. The paper is structured as follows: In section 2, we present requirements of the developed software, which includes a characterisation of the two compared software development projects. In section 3, we compare these two projects and clarify to which extent they are
2 comparable. Finally, we summarize the results of the comparison and present future work in section 6. 2 The developed software systems Both software development projects that being compared developed an implementation of the Palladio Component Model (PCM, [Kro06], [BKR07]) and a corresponding graphical editor ( Palladio Editor ). The PCM is a research oriented meta-model to describe models of component-based software architectures with focus on Quality of Service (QoS) aspects. The PCM has a large variety of entities like components, interfaces, roles, and connectors. Requirements for an implementation of the PCM include persistence, model observers, query methods, and model validations. The Palladio Editor is a graphical editor supporting multiple views of the model. Those views can be compared to the UML 2 component view (cf. [Obj05]), the UML 2 deployment view, and a view to illustrate the behaviour of components. Additionally, containment relations need to be supported to visualize composite component structures. Users of the PCM implementation and its editor are mostly researchers and students, no industrial maturity level is required. There are several constraints complicating the development. The PCM is constantly changing. New research ideas shall be directly reflected by the PCM and its editor. As a result the PCM changed frequently during the development process. Furthermore, the required PCM implementation needed to be flexible to adapt for new requirements and extendible to integrate new views, support many analysis tools, and changing validation routines. These requirements had to be reflected by the architecture of the PCM implementation. 2.1 Conventional Development: Ride.NET Overview The first software development project was performed by a student project group Ride.NET at the University of Oldenburg, Germany [PGR05]. In total 13 graduate students were involved in the project. The project started with a master thesis [Ufl05] that evaluated different extensible architectures for large scale editors. The output of this work was a prototype of an editor framework. Afterwards the main project group of 11 students started developing the editor for the PCM. In parallel, one student assistant developed a PCM implementation. The development was done conventionally (i.e., through writing the code by hand). The software was developed in C# with the.net framework 1.1. Besides the.net framework only one important larger library was used: Netron, a free graphical library [Pro]. The remaining software was written from scratch. The PCM and editor implementation finally were capable to support all requirements listed
3 in section 2. Additionally, the development included an import plugin that allowed to detect COM components [Cor] from given C# code and an export plugin able to generate C# code skeletons based on PCM specifications. During the development, often new requirements of the editor directly initiated development at the PCM implementation. A considerable effort was spent on debugging. Time effort The project group developed one year in total. 11 students were involved in the development. For each student, we assume a weekly time effort of about 20 hours 1. In total this sums up to 11 students * 20 h/week * 52 weeks = man hours for the members of the project group. Additionally, one has to calculate the effort for the development of the PCM implementation by the student assistant. The student assistant had 30 hours per month, summing up to 30 h/month * 12 months = 360 man hours. The project using conventional development took a total of about man hours to write the PCM implementation and the editor. The master thesis, which provided an initial prototype architecture is not considered in the estimation, as it had a different focus. 2.2 Model-Driven Development: GMF / EMF Overview From November 2005 to April 2006, a second project started. The aim of this project was almost the same, but the chosen tools and frameworks were different. The project was a master thesis [Kro06] of one student that previously was involved in Ride.NET. Instead of hand-written code, the project completely focused on a model-driven approach to create an implementation of the PCM and a corresponding editor. At the end, all requirements specified at the beginning of section 2 could be fulfilled. Development was done with IBM Rational Software Architect and the latest developer versions of the Eclipse Modeling Project [Ecl06], including Eclipse Modelling Framework (EMF), Graphical Editing Framework (GEF), and Graphical Modelling Framework (GMF). Time effort If the same time measuring is used for the second project like for the first, one gets a total of 1 student * 26 weeks * 50 h/week = man hours. 3 Comparison Just comparing the time effort of both projects reveals that Ride.NET took about ninefold the time of the master thesis project. One has to look into the project s details to grasp other quality attributes of the software like error rate, maintainability, extensibility and flexibility to make the comparison more serious. Table 1 gives an overview on the differences and commonalities of the two projects with respect to the attributes discussed in this section. Other assumptions and limitations are listed in section 4. 1 The project group was treated as two lectures (24 ECTS points) à 4 hours per week; for one hour of lecture usually 2.5 hours of time have to be spend; this makes in total 20 hours per week per student
4 Criterion Ride.NET GMF-Editor Programming language C# Java Implementation manual generated GUI-Library Netron ( buggy ) GEF ( mature ) Base framework.net / Netron Eclipse / EMF / GMF / GEF Undo / Redo implemented manually given by framework Event-mechanisms implemented manually given by framework Extendability given given Development effort high medium to high (depending on the degree of customizations) Effort after model high medium (depending on the changes degree of customizations) API of the component by demand capacious model used Bug probability high low (systematic bugs) Unit Tests manual generated test stubs Effort for learning high frameworks have to be learned medium MDD-Tools abstract framework complexity Time need about 4 man year about 1 2 man year Table 1: Comparison of Ride.NET and a GMF based editor for the component model Development time was saved by the model-driven approach starting with the first development cycle, because good transformations existed. Usually for model-driven approaches in-front costs are assumed. It could be stated that the quality of the generated code was much higher, than the one of the hand-written code. Especially, the most common types of failures changed: the faults of generated code usually are more systematic. Due to good templates the probability of failure was lower for the generated code. One reason, why the development took more time in the Ride.NET project was the software infrastructure. Ride.NET had to develop the whole infrastructure and architecture by hand, while for the model-driven approach, the Eclipse framework plus the infrastructure of EMF, GMF and GEF could be used. Using the mature infrastructure of EMF, GMF and GEF (instead of the immature Netron library plus hand-written code for the editor) provided further advantages: The combination of Eclipse and GMF provides a generated redo / undo stack. The Eclipse plugin mechanism can be used for extensions without coding the plugin architecture. For the PCM implementation (generated by EMF), an event based synchronisation of non-directed associations is generated and skeletons for unit tests can be created automatically. Overall, the generated API for the PCM was capacious instead of need-driven.
5 For both projects there was a high initial effort for learning the frameworks. In case of Ride.NET one had to learn how to program with those frameworks (i.e. Netron) in the case of the model-driven approach, one had to learn how to use the frameworks for the model-driven process (EMF, GMF). In the latter case, there is less effort, as model-driven development provides an abstraction of framework complexity. For the domain of graphical editors that follow a meta-model, model-driven software development provides substantial benefits. In contrast to the hand-written code, the generated PCM implementation as well as the graphical editor could be adapted to a new version of the meta-model (with moderate changes), that was caused by research requirements, within less than half a day by one person. Only a model-driven approach supports such fast update cycles. 4 Limitations As already mentioned in the introduction, initially the projects were not designed to provide a controlled study. Hence, the differences among both projects should be pointed out clearly. In Ride.NET there was a requirements analysis phase that took about two months. Later, for the model-driven approach the focus of requirements analysis laid on the PCM instead. The group of 12 students in the Ride.NET project caused a lot of communication overhead. Some time is usually assumed to be spend on communication and coordination in large groups. In the Eclipse based model-driven project the architecture was given. Hence it would not have been possible to design the architecture according to very special needs. In particular, hand-written architecture and code tend to be more customisable. For the needs of the PCM / Palladio Editor, the customisations provided by EMF / GMF were mostly sufficient. In the model-driven project, the focus was not on writing source code. Instead, the PCM meta-model had to be defined, useful tools had to be explored (EMF / GMF were not set), useful mappings and input models had to be defined especially for GMF to generate the editor. There was no time logging for the participants of both projects. Thus, all presented time efforts are rough estimations. The comparison applies only to the narrow domain of graphical editors for software models therefore the external validity of this comparison is limited to this domain. Although this section lists several limitations, one can assume that model-driven development would bring more efficiency to other graphical editor projects, too. 5 Related Work Currently, there is a lack of case studies on model-driven development that compare the same software product that is once developed manually and once model-driven. Most
6 available studies focus on a migration from conventional to model-driven development. Such a study is available with [Sta06] where the migration processes of two companies that are about to introduce model-driven development are evaluated. Additionally, a previous study evaluating the applicability of MDD to different kinds of projects is included. A large case study in terms of size and duration is available in [BLW05]. This study points out the experience of 15 years of MDD at Motorola, systematically handling success and failure issues for MDD. Issues like abstraction levels, semantic problems, tool support, influence of personnel and scalability are investigated. Schmidt [Sch06] gives a broader overview on the latest MDD approaches, that emphasizes the improvements by new tool support. 6 Results We have presented and compared two projects aiming at developing an implementation of the PCM and the Palladio Editor. It has been shown that developing functionally comparable software took about nine-fold more time if the source code was written by hand, compared to model-driven development. Although there are limitations of the presented comparison, the enormous win of efficiency and productivity in model-driven development of the graphical editor shows a reasonable domain where model-driven development is applicable. The above description of both projects indicates that the successful deployment of modeldriven approaches has to be supported by two pre-requisites: (a) the domain has to be well understood (which was the case due to the knowledge on the requirements and the architecture) and (b) the development has to be supported by powerful libraries and frameworks (in our case EMF, GEF, and GMF). Depending on the tool support of a domain, the time proportions of writing code and doing meta-modelling change significantly. The existence of good templates is essential for productivity as shown in the comparison. Another factor that influences the ratio of hand-written code is the degree of customizations: Customizations that are not supported by templates still need hand-written code. For further research, the empirical investigation on the role of the influencing factors on the success of model-driven development is required. In addition, the relation between generators and transformations on the one hand and libraries and frameworks on the other hand and their interplay has to be researched. There are some more challenges that come with the use of model-driven development, raised by this comparison. What happens to model instances after the evolution of a meta-model? How to manage the mix of generated and hand-written code after major refactorings of meta-models? So far, there is no support for (meta-)model maintenance. Future work will deal with these challenges.
7 References [BKR07] Steffen Becker, Heiko Koziolek, and Ralf Reussner. Model-based Performance Prediction with the Palladio Component Model. In Proceedings of the 6th International Workshop on Software and Performance (WOSP2007). ACM Sigsoft, February [BLW05] Paul Baker, Shiou Loh, and Frank Weil. Model-driven engineering in a large industrial context - Motorola case study. In Model Driven Engineering Languages and Systems, volume 3713/2005 of Lecture Notes in Computer Science, pages , Springer Berlin / Heidelberg, [Cor] Microsoft Corp. The COM homepage. last retrieved [Ecl06] Eclipse. The Eclipse Modelling Project, last retrieved [Kro06] Klaus Krogmann. Entwicklung und Transformation eines EMF-Modells des Palladio Komponenten-Meta-Modells. Master s thesis, University of Oldenburg, Germany, May [Obj05] Object Management Group (OMG). Unified Modeling Language Specification: Version 2, Revised Final Adopted Specification (ptc/ ), [PGR05] Project Group Ride.NET. Roundtrip Engineering Entwicklungsumgebung. Technical report, University of Oldenburg, Germany, [Pro] The Netron Project. Netron Graph Library. last retrieved [Sch06] Douglas C. Schmidt. Guest Editor s Introduction: Model-Driven Engineering. Computer, 39(2):25 31, [Sta06] [Ufl05] Miroslaw Staron. Adopting Model Driven Software Development in Industry - A Case Study at Two Companies. In MoDELS, pages 57 72, Matthias Uflacker. Design of an Editor for the model-driven Construction of Component Based Software Architectures. Master s thesis, University of Oldenburg, Germany, January 2005.
Model Driven Interoperability through Semantic Annotations using SoaML and ODM
Model Driven Interoperability through Semantic Annotations using SoaML and ODM JiuCheng Xu*, ZhaoYang Bai*, Arne J.Berre*, Odd Christer Brovig** *SINTEF, Pb. 124 Blindern, NO-0314 Oslo, Norway (e-mail:
Design of Visual Repository, Constraint and Process Modeling Tool based on Eclipse Plug-ins
Design of Visual Repository, Constraint and Process Modeling Tool based on Eclipse Plug-ins Rushiraj Heshi Department of Computer Science and Engineering Walchand College of Engineering, Sangli Smriti
GECO: Automatic Generator-Composition for (Aspect-oriented) DSLs
GECO: Automatic Generator-Composition for (Aspect-oriented) DSLs Doctoral Symposium - MODELS 2014 Reiner Jung Christian-Albrechts-University Kiel, Germany 30.09.2014 Domain-specific Languages Motivation
Towards a Performance Model Management Repository for Component-based Enterprise Applications
Austin, TX, USA, 2015-02-04 Towards a Performance Model Management Repository for Component-based Enterprise Applications Work-in-Progress Paper (WiP) International Conference on Performance Engineering
Development of Tool Extensions with MOFLON
Development of Tool Extensions with MOFLON Ingo Weisemöller, Felix Klar, and Andy Schürr Fachgebiet Echtzeitsysteme Technische Universität Darmstadt D-64283 Darmstadt, Germany {weisemoeller klar schuerr}@es.tu-darmstadt.de
Course 4 27 October 2014. Adrian Iftene [email protected]
Course 4 27 October 2014 Adrian Iftene [email protected] They will not be considered in the maximum values of the laboratory The presentation of the context and of these solutions in the course can
Revel8or: Model Driven Capacity Planning Tool Suite
Revel8or: Model Driven Capacity Planning Tool Suite Liming Zhu 1,2, Yan Liu 1,2, Ngoc Bao Bui 1,2,Ian Gorton 3 1 Empirical Software Engineering Program, National ICT Australia Ltd. 2 School of Computer
Eclipse BPMN Modeler Introducing Intalio Designer
Eclipse BPMN Modeler Introducing Intalio Designer Arnaud Blandin Ismael Ghalimi Hugues Malphettes Intalio Inc, EMEA Manager Intalio Inc, CEO Intalio Inc, Lead Developer 6 rue du conseil general 1205 Geneva
Overview. Stakes. Context. Model-Based Development of Safety-Critical Systems
1 2 Model-Based Development of -Critical Systems Miguel A. de Miguel 5/6,, 2006 modeling Stakes 3 Context 4 To increase the industrial competitiveness in the domain of software systems To face the growing
GECO: Automatic Generator-Composition for (Aspect-oriented) DSLs
GECO: Automatic Generator-Composition for (Aspect-oriented) DSLs Doctoral Symposium Reiner Jung Christian-Albrechts-Universität zu Kiel Institut für Informatik 26.02.2014 Domain-specific Languages Motivation
Using Dynatrace Monitoring Data for Generating Performance Models of Java EE Applications
Austin, TX, USA, 2015-02-02 Using Monitoring Data for Generating Performance Models of Java EE Applications Tool Paper International Conference on Performance Engineering (ICPE) 2015 Felix Willnecker 1,
Quality Assurance of Software Models within Eclipse using Java and OCL
Quality Assurance of Software Models within Eclipse using Java and OCL Dr. Thorsten Arendt Modellgetriebene Softwareentwicklung mobiler Anwendungen Wintersemester 2014/15 17. Dezember 2014 Outline Why
Defining and Checking Model Smells: A Quality Assurance Task for Models based on the Eclipse Modeling Framework
Defining and Checking Model Smells: A Quality Assurance Task for Models based on the Eclipse Modeling Framework Thorsten Arendt a, Matthias Burhenne a, Gabriele Taentzer a a Philipps-Universität Marburg,
Tool chain (BRIDE) delivered as BRICS software distribution
Best Practice in Robotics (BRICS) Grant Agreement Number: 231940 01.03.2009-28.02.2013 Instrument: Collaborative Project (IP) Tool chain (BRIDE) delivered as BRICS software distribution Hugo Garcia, Herman
UML Profiling Comes of Age Realizing the Potential of Domain-Specific Modeling
UML Profiling Comes of Age Realizing the Potential of Domain-Specific Modeling PATHS TO DOMAIN-SPECIFIC MODELING... 1 UML PROFILING... 2 The Origin of the UML Profiling Specifications... 2 The Vision...
Simplifying e Business Collaboration by providing a Semantic Mapping Platform
Simplifying e Business Collaboration by providing a Semantic Mapping Platform Abels, Sven 1 ; Sheikhhasan Hamzeh 1 ; Cranner, Paul 2 1 TIE Nederland BV, 1119 PS Amsterdam, Netherlands 2 University of Sunderland,
Co-Creation of Models and Metamodels for Enterprise. Architecture Projects.
Co-Creation of Models and Metamodels for Enterprise Architecture Projects Paola Gómez [email protected] Hector Florez [email protected] ABSTRACT The linguistic conformance and the ontological
UML-based Test Generation and Execution
UML-based Test Generation and Execution Jean Hartmann, Marlon Vieira, Herb Foster, Axel Ruder Siemens Corporate Research, Inc. 755 College Road East Princeton NJ 08540, USA [email protected] ABSTRACT
CHAPTER 2 LITERATURE SURVEY
CHAPTER 2 LITERATURE SURVEY This chapter describes the survey of existing literature on multiple views. Later, it presents literature survey conducted on frameworks for tool comparison and stakeholder
A Software Development Platform for SOA
A Software Development Platform for SOA Peter Eeles Executive IT Architect Rational Brand Architect for UK, Ireland and South Africa [email protected] 2004 IBM Corporation Agenda IBM Software Group
jeti: A Tool for Remote Tool Integration
jeti: A Tool for Remote Tool Integration Tiziana Margaria 1, Ralf Nagel 2, and Bernhard Steffen 2 1 Service Engineering for Distributed Systems, Institute for Informatics, University of Göttingen, Germany
Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools
Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools Jack Greenfield Keith Short WILEY Wiley Publishing, Inc. Preface Acknowledgments Foreword Parti Introduction to
A SYSTEMATIC APPROACH FOR COMPONENT-BASED SOFTWARE DEVELOPMENT
A SYSTEMATIC APPROACH FOR COMPONENT-BASED SOFTWARE DEVELOPMENT Cléver Ricardo Guareis de Farias, Marten van Sinderen and Luís Ferreira Pires Centre for Telematics and Information Technology (CTIT) PO Box
Performance Modeling in Industry A Case Study on Storage Virtualization
Performance Modeling in Industry A Case Study on Storage Virtualization SOFTWARE DESIGN AND QUALITY GROUP - DESCARTES RESEARCH GROUP INSTITUTE FOR PROGRAM STRUCTURES AND DATA ORGANIZATION, FACULTY OF INFORMATICS
Towards Integrating Modeling and Programming Languages: The Case of UML and Java
Towards Integrating Modeling and Programming Languages: The Case of UML and Java Patrick Neubauer, Tanja Mayerhofer, and Gerti Kappel Business Informatics Group, Vienna University of Technology, Austria
An Integrated Quality Assurance Framework for Specifying Business Information Systems
An Integrated Quality Assurance Framework for Specifying Business Information Systems Frank Salger 1, Stefan Sauer 2, Gregor Engels 1,2 1 Capgemini sd&m AG, Carl-Wery-Str. 42, D-81739 München, Germany
WebRatio 5: An Eclipse-based CASE tool for engineering Web applications
WebRatio 5: An Eclipse-based CASE tool for engineering Web applications Roberto Acerbis 1, Aldo Bongio 1, Marco Brambilla 2, Stefano Butti 1 1 WebModels S.r.l. Piazzale Gerbetto, 6. I22100 Como, Italy
Function Point Modeler Enterprise Edition A Software Lifecycle Management Tool
White Paper Function Point Modeler Enterprise Edition A Software Lifecycle Management Tool Writer: CFPS M.E. Dipl.-Ing. M. Öztürk, Update: 01 March 2011 Introduction The Purpose of this paper is to give
UML Modelling of Automated Business Processes with a Mapping to BPEL4WS
UML Modelling of Automated Business Processes with a Mapping to BPEL4WS Tracy Gardner IBM UK Laboratories, Hursley Park, Winchester, SO21 2JN, UK [email protected] Abstract. The Business Process Execution
Taking Subversion to a Higher Level. Branching/Merging Support. Component Management Support. And More
Taking Subversion to a Higher Level Branching/Merging Support Component Management Support And More About Impact CM Impact CM is a Service AddOn that facilitates software configuration management (CM)
Chapter 5: Discussion & Conclusion
Chapter 5: Discussion & Conclusion 5.1 INTRODUCTION The outcome of this research is analyzed to check if it meets the objectives outlined in chapter one. In chapter one, for each objective, a set of research
Development Process Automation Experiences in Japan
Development Process Automation Experiences in Japan Dr. Olaf Kath ikv ++ technologies ag Germany ikv++ technologies ag 2007 who we are core business optimization and automation of our customer s system
Improvement of Software Quality and Productivity Using Development Tools
Improvement of Software Quality and Productivity Using Development Tools V Hideo Abotani V Tomoki Shiratori V Kouji Sasaki V Masaki Tonomura (Manuscript received March 24, 2006) Information systems, which
Increasing Development Knowledge with EPFC
The Eclipse Process Framework Composer Increasing Development Knowledge with EPFC Are all your developers on the same page? Are they all using the best practices and the same best practices for agile,
A Framework of Model-Driven Web Application Testing
A Framework of Model-Driven Web Application Testing Nuo Li, Qin-qin Ma, Ji Wu, Mao-zhong Jin, Chao Liu Software Engineering Institute, School of Computer Science and Engineering, Beihang University, China
Towards Software Configuration Management for Test-Driven Development
Towards Software Configuration Management for Test-Driven Development Tammo Freese OFFIS, Escherweg 2, 26121 Oldenburg, Germany [email protected] Abstract. Test-Driven Development is a technique where
Automatic Generation of Consistency-Preserving Edit Operations for MDE Tools
Automatic Generation of Consistency-Preserving Edit Operations for MDE Tools Michaela Rindt, Timo Kehrer, Udo Kelter Software Engineering Group University of Siegen {mrindt,kehrer,kelter}@informatik.uni-siegen.de
ProGUM-Web: Tool Support for Model-Based Development of Web Applications
ProGUM-Web: Tool Support for Model-Based Development of Web Applications Marc Lohmann 1, Stefan Sauer 1, and Tim Schattkowsky 2 1 University of Paderborn, Computer Science, D 33095 Paderborn, Germany {mlohmann,sauer}@upb.de
TOGAF usage in outsourcing of software development
Acta Informatica Pragensia 2(2), 2013, 68 76, DOI: 10.18267/j.aip.25 Section: Online: aip.vse.cz Peer-reviewed papers TOGAF usage in outsourcing of software development Aziz Ahmad Rais 1, Rudolf Pecinovsky
Developing ASP.NET MVC 4 Web Applications
Course M20486 5 Day(s) 30:00 Hours Developing ASP.NET MVC 4 Web Applications Introduction In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools
Model-Driven Development of a Biosignal Analysis Framework: Benefits and Impacts on Processes. Nikolas Hofmann 08.11.2012
Model-Driven Development of a Biosignal Analysis Framework: Benefits and Impacts on Processes Nikolas Hofmann Introduction Biosignal analysis has versatile applications in medicine Mobile devices allow
CS4507 Advanced Software Engineering
CS4507 Advanced Software Engineering Lectures 2 & 3: Software Development Lifecycle Models A O Riordan, 2015 Some diagrams from Sommerville, some notes from Maciaszek/Liong Lifecycle Model Software development
Integrating TAU With Eclipse: A Performance Analysis System in an Integrated Development Environment
Integrating TAU With Eclipse: A Performance Analysis System in an Integrated Development Environment Wyatt Spear, Allen Malony, Alan Morris, Sameer Shende {wspear, malony, amorris, sameer}@cs.uoregon.edu
Modeling Turnpike: a Model-Driven Framework for Domain-Specific Software Development *
for Domain-Specific Software Development * Hiroshi Wada Advisor: Junichi Suzuki Department of Computer Science University of Massachusetts, Boston [email protected] and [email protected] Abstract. This
Automatic Test Data Generation for TTCN-3 using CTE
Automatic Test Data Generation for TTCN-3 using CTE Zhen Ru Dai, Peter H. Deussen, Maik Busch, Laurette Pianta Lacmene, Titus Ngwangwen FraunhoferInstitute for Open Communication Systems (FOKUS) Kaiserin-Augusta-Allee
Metamodels and Modeling Multiple Kinds of Information Systems
Metamodels and Modeling Multiple Kinds of Information Systems Randall M. Hauch Chief Architect presented at MDA, SOA and Web Services: Delivering the Integrated Enterprise Practice, not Promise MetaMatrix
This presentation will provide a brief introduction to Rational Application Developer V7.5.
This presentation will provide a brief introduction to Rational Application Developer V7.5. Page 1 of 11 This presentation will first discuss the fundamental software components in this release, followed
Enterprise Architecture at Work
Marc Lankhorst et al. Enterprise Architecture at Work Modelling, Communication and Analysis Third Edition 4y Springer Contents 1 Introduction to Enterprise Architecture 1 1.1 Architecture 1 1.2 Enterprise
Generating Aspect Code from UML Models
Generating Aspect Code from UML Models Iris Groher Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739 Munich, Germany [email protected] Stefan Schulze Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739 Munich,
Use software to define silicon p. 15
April 2008 Use software to define silicon p. 15 >> Domain-specific modeling p.20 >> Efficient CRC calculation p.24 >> Linux development tools p.28 >> Verification enters the atomic age p.33 >> Advantages
WHITE PAPER DATA GOVERNANCE ENTERPRISE MODEL MANAGEMENT
WHITE PAPER DATA GOVERNANCE ENTERPRISE MODEL MANAGEMENT CONTENTS 1. THE NEED FOR DATA GOVERNANCE... 2 2. DATA GOVERNANCE... 2 2.1. Definition... 2 2.2. Responsibilities... 3 3. ACTIVITIES... 6 4. THE
SOFTWARE TESTING TRAINING COURSES CONTENTS
SOFTWARE TESTING TRAINING COURSES CONTENTS 1 Unit I Description Objectves Duration Contents Software Testing Fundamentals and Best Practices This training course will give basic understanding on software
Model-Driven Development - From Frontend to Code
Model-Driven Development - From Frontend to Code Sven Efftinge [email protected] www.efftinge.de Bernd Kolb [email protected] www.kolbware.de Markus Völter [email protected] www.voelter.de -1- Model Driven
Development of Enterprise Architecture of PPDR Organisations W. Müller, F. Reinert
Int'l Conf. Software Eng. Research and Practice SERP'15 225 Development of Enterprise Architecture of PPDR Organisations W. Müller, F. Reinert Fraunhofer Institute of Optronics, System Technologies and
A QUICK OVERVIEW OF THE OMNeT++ IDE
Introduction A QUICK OVERVIEW OF THE OMNeT++ IDE The OMNeT++ 4.x Integrated Development Environment is based on the Eclipse platform, and extends it with new editors, views, wizards, and additional functionality.
Implementing reusable software components for SNOMED CT diagram and expression concept representations
1028 e-health For Continuity of Care C. Lovis et al. (Eds.) 2014 European Federation for Medical Informatics and IOS Press. This article is published online with Open Access by IOS Press and distributed
Model-Based Engineering: A New Era Based on Papyrus and Open Source Tooling
Model-Based Engineering: A New Era Based on Papyrus and Open Source Tooling Francis Bordeleau Ericsson 8500 Decarie Blvd, Town of Mount Royal, QC, H4P 2N2, Canada [email protected] http://www.ericsson.com
XFlash A Web Application Design Framework with Model-Driven Methodology
International Journal of u- and e- Service, Science and Technology 47 XFlash A Web Application Design Framework with Model-Driven Methodology Ronnie Cheung Hong Kong Polytechnic University, Hong Kong SAR,
Fast and Easy Delivery of Data Mining Insights to Reporting Systems
Fast and Easy Delivery of Data Mining Insights to Reporting Systems Ruben Pulido, Christoph Sieb [email protected], [email protected] Abstract: During the last decade data mining and predictive
How To Design An Information System
Information system for production and mounting of plastic windows MARCEL, MELIŠ Slovak University of Technology - Faculty of Material Sciences and Technology in Trnava, Paulínska 16 street, Trnava, 917
How To Understand Software Engineering
PESIT Bangalore South Campus Department of MCA SOFTWARE ENGINEERING 1. GENERAL INFORMATION Academic Year: JULY-NOV 2015 Semester(s):III Title Code Duration (hrs) SOFTWARE ENGINEERING 13MCA33 Lectures 52Hrs
The Rap on RUP : An Introduction to the Rational Unified Process
The Rap on RUP : An Introduction to the Rational Unified Process Jeff Jacobs Jeffrey Jacobs & Associates phone: 650.571.7092 email: [email protected] http://www.jeffreyjacobs.com Survey Does your
Software Specification and Testing
Software Specification and Testing Using UML and OCL Jonathan Milley Faculty of Engineering and Applied Science MUN St. John s, Newfoundland Email: [email protected] Dr. Dennis K. Peters Faculty of Engineering
To introduce software process models To describe three generic process models and when they may be used
Software Processes Objectives To introduce software process models To describe three generic process models and when they may be used To describe outline process models for requirements engineering, software
DIABLO VALLEY COLLEGE CATALOG 2014-2015
COMPUTER SCIENCE COMSC The computer science department offers courses in three general areas, each targeted to serve students with specific needs: 1. General education students seeking a computer literacy
