Implementing reusable software components for SNOMED CT diagram and expression concept representations
|
|
|
- Jessie Nickolas Walker
- 9 years ago
- Views:
Transcription
1 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 under the terms of the Creative Commons Attribution Non-Commercial License. doi: / Implementing reusable software components for SNOMED CT diagram and expression concept representations Balázs BÁNFAI a,1, Roland PORCIÓ a, Tibor KOVÁCS b a B2i Healthcare, Budapest, Hungary b Budapest University of Technology and Economics, Hungary Abstract. SNOMED CT is a vital component in the future of semantic interoperability in healthcare as it provides the meaning to EHRs via its semantically rich, controlled terminology. Communicating the concepts of this terminology to both humans and machines is crucial therefore formal guidelines for diagram and expression representations have been developed by the curators of SNOMED CT. This paper presents a novel, model-based approach to implementing these guidelines that allows simultaneous editing of a concept via both diagram and expression editors. The implemented extensible software component can be embedded both both desktop and web applications. Keywords. SNOMED CT, diagram representation, Compositional Grammar, software modelling, reusable implementation, Snow Owl Introduction SNOMED Clinical Terms (SNOMED CT) [1] is considered the most comprehensive, multilingual clinical healthcare terminology in the world. It is maintained by the International Health Terminology Standards Development Organization (IHTSDO) [1] with the primary purpose to ensure interoperability and to provide the semantics to an interoperable electronic health record. SNOMED CT can be characterized as a multilingual thesaurus with an ontological foundation structured as a multi-axial subtype hierarchy. The ontology is composed of rational statements in the form of Concept 1 - Relation - Concept 2 where multiple relation types can connect the concepts. Concept relationships can express hierarchical or other types of relationships enabling not only the hierarchical grouping of the related concepts but also logical reasoning via programmatic classification. As communicating the concepts of SNOMED CT is a very important aspect of the development of the terminology, IHTSDO has developed specifications for representing concepts both as diagrams [2] as well as textual expressions [3] defined by a formal compositional grammar. Both representations are meant to formalize communication while eliminating ambiguity; the diagrammatic representation is targeted for humans whereas the expression is designed primarily to be machine- 1 Corresponding Author: Balázs Bánfai, B2i Healthcare, Andrássy Ave. 35, 1061 Budapest, Hungary; [email protected]
2 B. Bánfai et al. / SNOMED CT Diagram and Expression Concept Representations 1029 readable. In addition to conformance to the specifications, the authors aimed to satisfy the following requirements: Concepts simultaneously editable via the expression and diagram editors while keeping both representations in sync Editing possible both locally and remotely over the internet Support for concurrent modification in case of a distributed deployment Embeddable into both desktop and web applications Extensible to accommodate future extensions of the specifications or additional user requirements 1. Methods Each SNOMED CT concept encapsulates a unique clinical meaning, which is identified by a unique and immutable numeric identifier. Concept identifiers do not carry implicit meaning; the meaning of the concept is defined by its relationships to other concepts within the terminology. Each concept can have multiple human-readable descriptions including the unique and mandatory Fully Specified Name. For example: CONCEPT Concept ID Fully Specified Name - Myocardial infarction (disorder) DESCRIPTIONS Preferred Term - Myocardial infarction Synonyms - Myocardial infarct, MI - Myocardial infarction, Infarction of heart, Cardiac infarction, Heart attack RELATIONSHIPS Myocardial infarction IS A Myocardial disease (disorder) Necrosis of anatomical site (disorder) Ischemic heart disease (disorder) The defining ATTRIBUTES are Associated morphology - Infarct (morphologic abnormality) Finding site - Myocardium structure (body structure) 1.1. SNOMED CT Compositional Grammar and Diagramming SNOMED CT concepts can be described as a SNOMED CT Compositional Grammar expression. The syntax of SNOMED CT Compositional Grammar [3] is specified in Augmented Backus-Naur Form (ABNF). A concept definition minimally consists of the concept identifier, optionally followed by a human-readable description of the concept. Multiple parentage is expressed by concatenating the parents using the plus sign and refinements to the concepts can be appended after a colon following the concept: Myocardial disease Ischemic heart disease Necrosis of anatomical site : Associated morphology = Infarct, Finding site = Myocardium structure
3 1030 B. Bánfai et al. / SNOMED CT Diagram and Expression Concept Representations The diagramming guidelines define the graphical notation for representing a concept definition where the concept being defined is shown at the top left connected to a series of expressions via operators. It is allowed to omit the defined concept. Hollow arrows represent parentage by pointing to the parent concept, whereas other types of relationships are represented by a rounded rectangle between two regular arrows pointing from source to target Solution Approach The authors have selected the Eclipse Modeling Project as the technological foundation for implementing the Model-View-Controller (MVC) [4] pattern required by the editors. At the core of the Eclipse Modeling Project lies the Eclipse Modeling Framework (EMF) [5], a modeling framework and code generation facility built around its Ecore meta-model. Ecore is an implementation of the Object Management Group (OMG) Essential Meta-Object Facility (EMOF) standard [6]. Ecore models are extensible by definition and can either be built from scratch or generated from existing XML schemas, UML models, Xtext domain specific languages (DSLs) or annotated Java interfaces. Models described by Ecore have built-in support for reflective editing, change notification, validation and serialization. The authors have defined a common model as an Xtext DSL [7] by adopting the SNOMED CT Compositional Grammar syntax. Xtext then generates an EMF model for the DSL, which serves as the common target for both the diagram and expression editors. User modification of the diagram or textual expressions generates events that are caught by listeners. These listeners notify the editor to perform the necessary modifications on the model. Grammar changes are converted using an Xtext DSL Parser that is also responsible for validating the input. As long as the expression is invalid, the graphical editing is disabled. Notifications about model changes have been developed via EMF Adapters [5] that implement the Observer design pattern [4]. For creating the textual representation of the model, an Xtext Serializer is configured which is capable of converting the given model and formatting the output based on the grammar rules. Figure 1 shows the implemented architecture and the communication between the main components of the library. Figure 1. Editing and notification.
4 B. Bánfai et al. / SNOMED CT Diagram and Expression Concept Representations Desktop and Web Clients For desktop editing the authors have selected the Eclipse Graphical Editing Framework (GEF) [7] as it tightly integrates with EMF. The actual diagram elements have been developed as custom figures. For the expression entry the StyledText component was used. For the web editing the Vaadin framework [8] was selected. The framework is suitable for creating efficient and desktop-like applications and it supports the creation of customized Google Web Toolkit (GWT) [9] components. The textual editor is a customized RichTextArea widget, while the graphical editor implements the Canvas component. The client side (web browser) is responsible for the representation of the data and user event creation, while the server side handles the events from the client, updates the model based on the events, inform the editors if the model was changed and performs the model conversion and validation. 2. Results The implemented editors do not make assumptions whether the model has been accessed locally or remotely which makes it suitable for a standalone environment as well as for client-server architectures. Via the notification mechanism, both editors are kept in sync. Validation of the user modifications is carried out automatically and the errors are shown both in the expression and in a pop-up window. The invalid part of expression is highlighted and underlined with a red squiggle and error messages are shown in the lower right corner in a pop-up window. A demo web application is shown in Figure 2. In addition to the web application, the created desktop component was also embedded into Snow Owl [10] (Figure 3), a commercial medical ontology authoring solution. The selected concept in the left side concept navigator is visualized. The expressions or the diagrams can be exported or printed directly from both the web and desktop components. Figure 2. Component in a web application.
5 1032 B. Bánfai et al. / SNOMED CT Diagram and Expression Concept Representations 3. Discussion Figure 3. Desktop component embedded in a commercial application. Java components have been implemented to simultaneously view and edit SNOMED CT concepts both as a diagram and as an expression. The solution conforms to the relevant IHTSDO specifications. The heavily utilized Eclipse modeling software libraries proved to be an excellent choice to fulfill the requirements as the implemented common EMF model supports concurrent editing, change notification, validation and serialization. The Java library developed can be embedded both into desktop as well as into web applications. The introduced approach and the developed model can also be extended to accommodate future requirements of the evolving standards. The authors are not aware of any implementation at present that conforms to the formal specifications published by IHTSDO while fulfilling the non-functional requirements stated in this document. References [1] International Health Terminology Standards Development Organization [Internet]. Welcome to IHTSDO. IHTSDO; [updated 2014 Jan 20; cited 2014 Jan 21]. Available from: [2] International Health Terminology Standards Development Organization [Internet]. SNOMED CT Diagramming Guideline. IHTSDO; [cited 2014 Jan 21]. Available from: [3] International Health Terminology Standards Development Organization [Internet]. SNOMED CT Technical Implementation Guide. IHTSDO; [cited 2014 Jan 21]. Available from: [4] Gamma E, Helm R, Johnson R, Vlissides J. Design Patterns: Elements of Reusable Object-Oriented Software. Boston: Pearson Education; [5] Steinberg D, Budinsky F, Paternostro M, Merks E. EMF - Eclipse Modeling Framework. 2nd ed. New Jersey: Pearson Education; [6] Object Management Group [Internet]. OMG s MetaObject Facility. OMG; [updated 2014 Jan 09; cited 2014 Jan 20]. Available from: [7] Gronback RC. Eclipse Modeling Project A Domain-Specific Language (DSL) Toolkit. New Jersey: Pearson Education; [8] Holan J, Kvasnovsky O. Vaadin 7 Cookbook. Birmingham: Packt Publishing Ltd; [9] Google [Internet]. Google Web Toolkit Project. Google; [updated 2014 Jan 14; cited 2014 Jan 20]. Available from: [10] B2i Healthcare Ltd [Internet]. Snow Owl Terminology Authoring Tool. B2i Healthcare Ltd; [updated 2013 Sep 17; cited 2014 Jan 21]. Available from:
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:
Organization of DSLE part. Overview of DSLE. Model driven software engineering. Engineering. Tooling. Topics:
Organization of DSLE part Domain Specific Language Engineering Tooling Eclipse plus EMF Xtext, Xtend, Xpand, QVTo and ATL Prof.dr. Mark van den Brand GLT 2010/11 Topics: Meta-modeling Model transformations
VICCI. The Eclipse Modeling Framework (EMF) A Practical Introduction and Technology Overview. Dipl.-Inf. Christoph Seidl
VICCI Visual and Interactive Cyber-Physical Systems Control and Integration The Eclipse Modeling Framework (EMF) A Practical Introduction and Technology Overview Dipl.-Inf. Christoph Seidl Overview of
COCOVILA Compiler-Compiler for Visual Languages
LDTA 2005 Preliminary Version COCOVILA Compiler-Compiler for Visual Languages Pavel Grigorenko, Ando Saabas and Enn Tyugu 1 Institute of Cybernetics, Tallinn University of Technology Akadeemia tee 21 12618
An eclipse-based Feature Models toolchain
An eclipse-based Feature Models toolchain Luca Gherardi, Davide Brugali Dept. of Information Technology and Mathematics Methods, University of Bergamo [email protected], [email protected] Abstract.
Modeling Cloud Messaging with a Domain-Specific Modeling Language
Modeling Cloud Messaging with a Domain-Specific Modeling Language Gábor Kövesdán, Márk Asztalos and László Lengyel Budapest University of Technology and Economics, Budapest, Hungary {gabor.kovesdan, asztalos,
SNOMED CT. The Language of Electronic Health Records
SNOMED CT The Language of Electronic Health Records Contents SNOMED CT: An overview page 02 What is a Clinical Terminology? What is SNOMED CT? The International Health Terminology Standards Development
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
A Tool Suite for the Generation and Validation of Configurations for Software Availability
A Tool Suite for the Generation and Validation of Configurations for Software Availability A. Gherbi 1, A. Kanso 1, F. Khendek 1, M. Toeroe 2 and A. Hamou-Lhadj 1 1 Concordia University, Montréal, Canada
A Brief Analysis of Web Design Patterns
A Brief Analysis of Web Design Patterns Ginny Sharma M.Tech Student, Dept. of CSE, MRIU Faridabad, Haryana, India Abstract Design patterns document good design solutions to a recurring problem in a particular
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
A Service Oriented Approach for Guidelines-based Clinical Decision Support using BPMN
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 under
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
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,
SNOMED CT Introduction. Dr Linda Bird, IHTSDO Implementation Specialist
SNOMED CT Introduction Dr Linda Bird, IHTSDO Implementation Specialist Audience and Objectives Audience Attendees of the SNOMED CT Implementation Showcase who are either new to SNOMED CT or who would like
The ADOxx Metamodelling Platform Workshop "Methods as Plug-Ins for Meta-Modelling" in conjunction with "Modellierung 2010", Klagenfurt
The ADOxx Metamodelling Platform Workshop "Methods as Plug-Ins for Meta-Modelling" in conjunction with "Modellierung 2010", Klagenfurt Dr. Harald Kühn 24.03.2010 Agenda 1 Overview 2 Deployment and Integration
Terminology Services in Support of Healthcare Interoperability
Terminology Services in Support of Healthcare Russell Hamm Informatics Consultant Apelon, Inc. Co-chair HL7 Vocabulary Workgroup Outline Why Terminology Importance of Terminologies Terminologies in Healthcare
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
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,
A model driven approach for bridging ILOG Rule Language and RIF
A model driven approach for bridging ILOG Rule Language and RIF Valerio Cosentino, Marcos Didonet del Fabro, Adil El Ghali To cite this version: Valerio Cosentino, Marcos Didonet del Fabro, Adil El Ghali.
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,
Model-Driven Health Tools (MDHT) CDA Tools Overview. http://mdht.projects.openhealthtools.org
Model-Driven Health Tools (MDHT) CDA Tools Overview http://mdht.projects.openhealthtools.org CDA Tools Objectives Accelerate and lower cost of adopting CDAr2 standard Define new CDA templates and implementation
Foundations of Model-Driven Software Engineering
Model-Driven Software Engineering Foundations of Model-Driven Software Engineering Dr. Jochen Küster ([email protected]) Contents Introduction to Models and Modeling Concepts of Model-Driven Software
Interface Terminology to Facilitate the Problem List Using SNOMED CT and other Terminology Standards
Interface Terminology to Facilitate the Problem List Using SNOMED CT and other Terminology Standards Kshitij Saxena MD, MHSA Regional Medical Director, Adventist Health System Agenda Introduction Problem
Representing XML Schema in UML A Comparison of Approaches
Representing XML Schema in UML A Comparison of Approaches Martin Bernauer, Gerti Kappel, Gerhard Kramler Business Informatics Group, Vienna University of Technology, Austria {lastname}@big.tuwien.ac.at
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
Textual Modeling Languages
Textual Modeling Languages Slides 4-31 and 38-40 of this lecture are reused from the Model Engineering course at TU Vienna with the kind permission of Prof. Gerti Kappel (head of the Business Informatics
A Cloud Architecture for an Extensible Multi-Paradigm Modeling Environment
A Cloud Architecture for an Extensible Multi-Paradigm Modeling Environment Jonathan Corley 1 and Eugene Syriani 2 1 University of Alabama, U.S.A. 2 Université de Montréal, Canada Abstract. We present the
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
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
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
Source Code Translation
Source Code Translation Everyone who writes computer software eventually faces the requirement of converting a large code base from one programming language to another. That requirement is sometimes driven
IBM Rational Web Developer for WebSphere Software Version 6.0
Rapidly build, test and deploy Web, Web services and Java applications with an IDE that is easy to learn and use IBM Rational Web Developer for WebSphere Software Version 6.0 Highlights Accelerate Web,
How To Use Networked Ontology In E Health
A practical approach to create ontology networks in e-health: The NeOn take Tomás Pariente Lobo 1, *, Germán Herrero Cárcel 1, 1 A TOS Research and Innovation, ATOS Origin SAE, 28037 Madrid, Spain. Abstract.
ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET
ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET PRODUCTIVE ENTERPRISE MOBILE APPLICATIONS DEVELOPMENT KEY FEATURES Visual and declarative development Mobile optimized user experience Simplified access to
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,
Requirements Exchange: From Specification Documents to Models
Requirements Exchange: From Specification Documents to Models Morayo ADEDJOUMA, Hubert DUBOIS, François TERRIER Ansgar RADERMACHER UML&AADL 2011-27 April 2011, Las Vegas Agenda Big picture Challenge Technologies
CrownPeak Java Web Hosting. Version 0.20
CrownPeak Java Web Hosting Version 0.20 2014 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,
Common Warehouse Metamodel (CWM): Extending UML for Data Warehousing and Business Intelligence
Common Warehouse Metamodel (CWM): Extending UML for Data Warehousing and Business Intelligence OMG First Workshop on UML in the.com Enterprise: Modeling CORBA, Components, XML/XMI and Metadata November
Clinical Knowledge Manager. Product Description 2012 MAKING HEALTH COMPUTE
Clinical Knowledge Manager Product Description 2012 MAKING HEALTH COMPUTE Cofounder and major sponsor Member and official submitter for HL7/OMG HSSP RLUS, EIS 'openehr' is a registered trademark of the
Information systems modelling UML and service description languages
Internet Engineering Tomasz Babczyński, Zofia Kruczkiewicz Tomasz Kubik Information systems modelling UML and service description languages Student Contact Hours: 25.02.2015- Location: 325 C3 room 25.03.2015:
Creating visualizations through ontology mapping
Creating visualizations through ontology mapping Sean M. Falconer R. Ian Bull Lars Grammel Margaret-Anne Storey University of Victoria {seanf,irbull,lgrammel,mstorey}@uvic.ca Abstract We explore how to
GenericServ, a Generic Server for Web Application Development
EurAsia-ICT 2002, Shiraz-Iran, 29-31 Oct. GenericServ, a Generic Server for Web Application Development Samar TAWBI PHD student [email protected] Bilal CHEBARO Assistant professor [email protected] Abstract
Electronic Healthcare Design and Development
Electronic Healthcare Design and Development Background The goal of this project is to design and develop a course on Electronic Healthcare Design and Development using Unified Modeling Language (UML)
A Novel Approach to Developing Applications in the Pervasive Healthcare Environment through the Use of Archetypes
A Novel Approach to Developing Applications in the Pervasive Healthcare Environment through the Use of Archetypes João Luís Cardoso de Moraes 1, Wanderley Lopes de Souza 1, Luís Ferreira Pires 2, Luciana
ONTOLOGY FOR MOBILE PHONE OPERATING SYSTEMS
ONTOLOGY FOR MOBILE PHONE OPERATING SYSTEMS Hasni Neji and Ridha Bouallegue Innov COM Lab, Higher School of Communications of Tunis, Sup Com University of Carthage, Tunis, Tunisia. Email: [email protected];
Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note
Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note Text book of CPET 545 Service-Oriented Architecture and Enterprise Application: SOA Principles of Service Design, by Thomas Erl, ISBN
Software Development Kit
Open EMS Suite by Nokia Software Development Kit Functional Overview Version 1.3 Nokia Siemens Networks 1 (21) Software Development Kit The information in this document is subject to change without notice
Jos Warmer, Independent [email protected] www.openmodeling.nl
Domain Specific Languages for Business Users Jos Warmer, Independent [email protected] www.openmodeling.nl Sheet 2 Background Experience Business DSLs Insurance Product Modeling (structure) Pattern
Recent Advances in Eclipse QVTO!
!! National Aeronautics and Recent Advances in Eclipse QVTO! Nicolas Rouquette Principal Computer Scientist, Systems and Software Division 2012. Government sponsorship acknowledged. Outline! A Condensed
Improving EHR Semantic Interoperability Future Vision and Challenges
Improving EHR Semantic Interoperability Future Vision and Challenges Catalina MARTÍNEZ-COSTA a,1 Dipak KALRA b, Stefan SCHULZ a a IMI,Medical University of Graz, Austria b CHIME, University College London,
Chap 1. Introduction to Software Architecture
Chap 1. Introduction to Software Architecture 1. Introduction 2. IEEE Recommended Practice for Architecture Modeling 3. Architecture Description Language: the UML 4. The Rational Unified Process (RUP)
Software Engineering. Software Engineering. Component-Based. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering Component-Based Software Engineering Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain that CBSE is concerned with developing standardised components
Practical Implementation of a Bridge between Legacy EHR System and a Clinical Research Environment
Cross-Border Challenges in Informatics with a Focus on Disease Surveillance and Utilising Big-Data L. Stoicu-Tivadar et al. (Eds.) 2014 The authors. This article is published online with Open Access by
EHR Standards Landscape
EHR Standards Landscape Dr Dipak Kalra Centre for Health Informatics and Multiprofessional Education (CHIME) University College London [email protected] A trans-national ehealth Infostructure Wellness
Comparison of Model-Driven Architecture and Software Factories in the Context of Model-Driven Development
Comparison of Model-Driven Architecture and Software Factories in the Context of Model-Driven Development Ahmet Demir Technische Universität München Department of Informatics Munich, Germany [email protected]
Meta-Model specification V2 D602.012
PROPRIETARY RIGHTS STATEMENT THIS DOCUMENT CONTAINS INFORMATION, WHICH IS PROPRIETARY TO THE CRYSTAL CONSORTIUM. NEITHER THIS DOCUMENT NOR THE INFORMATION CONTAINED HEREIN SHALL BE USED, DUPLICATED OR
UML FOR OBJECTIVE-C. Excel Software www.excelsoftware.com
UML FOR OBJECTIVE-C Excel Software www.excelsoftware.com Objective-C is a popular programming language for Mac OS X computers. The Unified Modeling Language (UML) is the industry standard notation for
Towards Collaboration on Accessible UML Models
his is a draft version of the full paper to be presented at the AI4VIP workshop colocated with MuC'15. owards Collaboration on Accessible UML Models Stephan Seifermann, Henning roenda Software Engineering,
Patterns in. Lecture 2 GoF Design Patterns Creational. Sharif University of Technology. Department of Computer Engineering
Patterns in Software Engineering Lecturer: Raman Ramsin Lecture 2 GoF Design Patterns Creational 1 GoF Design Patterns Principles Emphasis on flexibility and reuse through decoupling of classes. The underlying
Object-Process Methodology as a basis for the Visual Semantic Web
Object-Process Methodology as a basis for the Visual Semantic Web Dov Dori Technion, Israel Institute of Technology, Haifa 32000, Israel [email protected], and Massachusetts Institute of Technology,
CoSMIC: An MDA Tool Suite for Application Deployment and Configuration
CoSMIC: An MDA Tool Suite for Application Deployment and Configuration Tao Lu, Emre Turkay, Aniruddha Gokhale*, Douglas Schmidt Institute for Software Integrated Systems Vanderbilt University, Nashville
ARCHITECTURAL DESIGN OF MODERN WEB APPLICATIONS
ARCHITECTURAL DESIGN OF MODERN WEB APPLICATIONS Lech MADEYSKI *, Michał STOCHMIAŁEK Abstract. Architectural design is about decisions which influence characteristics of arising system e.g. maintainability
Contents. Introduction and System Engineering 1. Introduction 2. Software Process and Methodology 16. System Engineering 53
Preface xvi Part I Introduction and System Engineering 1 Chapter 1 Introduction 2 1.1 What Is Software Engineering? 2 1.2 Why Software Engineering? 3 1.3 Software Life-Cycle Activities 4 1.3.1 Software
Winery A Modeling Tool for TOSCA-based Cloud Applications
Institute of Architecture of Application Systems Winery A Modeling Tool for TOSCA-based Cloud Applications Oliver Kopp 1,2, Tobias Binz 2, Uwe Breitenbücher 2, and Frank Leymann 2 1 IPVS, 2 IAAS, University
Building Applications with Protégé: An Overview. Protégé Conference July 23, 2006
Building Applications with Protégé: An Overview Protégé Conference July 23, 2006 Outline Protégé and Databases Protégé Application Designs API Application Designs Web Application Designs Higher Level Access
A Review of an MVC Framework based Software Development
, pp. 213-220 http://dx.doi.org/10.14257/ijseia.2014.8.10.19 A Review of an MVC Framework based Software Development Ronnie D. Caytiles and Sunguk Lee * Department of Multimedia Engineering, Hannam University
SEARCH The National Consortium for Justice Information and Statistics. Model-driven Development of NIEM Information Exchange Package Documentation
Technical Brief April 2011 The National Consortium for Justice Information and Statistics Model-driven Development of NIEM Information Exchange Package Documentation By Andrew Owen and Scott Came Since
today 1,700 special programming languages used to communicate in over 700 application areas.
today 1,700 special programming languages used to communicate in over 700 application areas. Computer Software Issues, an American Mathematical Association Prospectus, July 1965, quoted in P. J. Landin
Client-server 3-tier N-tier
Web Application Design Notes Jeff Offutt http://www.cs.gmu.edu/~offutt/ SWE 642 Software Engineering for the World Wide Web N-Tier Architecture network middleware middleware Client Web Server Application
An Approach to Software Architecture Description Using UML
An Approach to Software Architecture Description Using UML Henrik Bærbak Christensen, Aino Corry, and Klaus Marius Hansen Department of Computer Science, University of Aarhus Aabogade 34, 8200 Århus N,
Lecture 9: Requirements Modelling
A little refresher: What are we modelling? Lecture 9: Requirements Modelling Requirements; Systems; Systems Thinking Role of Modelling in RE Why modelling is important Limitations of modelling Brief overview
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
A methodology for secure software design
A methodology for secure software design Eduardo B. Fernandez Dept. of Computer Science and Eng. Florida Atlantic University Boca Raton, FL 33431 [email protected] 1. Introduction A good percentage of the
Section C. Requirements Elicitation
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. Your use of this material constitutes acceptance of that license and the conditions of use of materials on this
Transforming PICTURE to BPMN 2.0 as Part of the Model-driven Development of Electronic Government Systems
Heitkötter, Henning, Transforming PICTURE to BPMN 2.0 as Part of the Model-Driven Development of Electronic Government Systems, 44th Hawaii International Conference on System Sciences (HICSS), pp. 1 10,
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
Koen Aers JBoss, a division of Red Hat jbpm GPD Lead
JBoss jbpm Overview Koen Aers JBoss, a division of Red Hat jbpm GPD Lead Agenda What is JBoss jbpm? Multi Language Support Graphical Process Designer BPMN Reflections What is it? JBoss jbpm is a sophisticated
Ontology-based Archetype Interoperability and Management
Ontology-based Archetype Interoperability and Management Catalina Martínez-Costa, Marcos Menárguez-Tortosa, J. T. Fernández-Breis Departamento de Informática y Sistemas, Facultad de Informática Universidad
Health Care Information System Standards
Health Care Information System Standards 1 Standards Development Process Four Methods (Hammond & Cimino, 2001) Ad hoc no formal adoption process De facto vendor or other has a very large segment of the
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
EMC Documentum Composer
EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights
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
Scenario-based Requirements Engineering and User-Interface Design
Scenario-based Requirements Engineering and User-Interface Institut für Computertechnik ICT Institute of Computer Technology Hermann Kaindl Vienna University of Technology, ICT Austria [email protected]
Software Engineering. System Models. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering System Models Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain why the context of a system should be modeled as part of the RE process To describe
Instrumentation Software Profiling
Instrumentation Software Profiling Software Profiling Instrumentation of a program so that data related to runtime performance (e.g execution time, memory usage) is gathered for one or more pieces of the
Supporting in- and off-hospital Patient Management Using a Web-based Integrated Software Platform
Digital Healthcare Empowering Europeans R. Cornet et al. (Eds.) 2015 European Federation for Medical Informatics (EFMI). This article is published online with Open Access by IOS Press and distributed under
Introduction à EMF Eclipse Modeling Framework
Ingénierie Dirigée par les Modèles Introduction à Eclipse Modeling Framework Pierre Laforcade Master EIAH 2007 Sources du cours Tutoriaux et cours d' disponibles sur http://www.eclipse.org/modeling/emf/
Software Requirements Specification of A University Class Scheduler
Software Requirements Specification of A University Class Scheduler Deanna M. Needell Jeff A. Stuart Tamara C. Thiel Sergiu M. Dascalu Frederick C. Harris, Jr. Department of Computer Science University
Selbo 2 an Environment for Creating Electronic Content in Software Engineering
BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 9, No 3 Sofia 2009 Selbo 2 an Environment for Creating Electronic Content in Software Engineering Damyan Mitev 1, Stanimir
This is an author-deposited version published in : http://oatao.univ-toulouse.fr/ Eprints ID : 15447
Open Archive TOULOUSE Archive Ouverte (OATAO) OATAO is an open access repository that collects the work of Toulouse researchers and makes it freely available over the web where possible. This is an author-deposited
