Elucidative Programming in Open Integrated Development Environments for Java

Size: px
Start display at page:

Download "Elucidative Programming in Open Integrated Development Environments for Java"

Transcription

1 Elucidative Programming in Open Integrated Development Environments for Java Thomas Vestdam Department of Computer Science, Aalborg University Fredrik Bajers Vej 7E 9220 Aalborg, Denmark ABSTRACT In this paper we present an integration of tool support for internal documentation in the modern IDE TogetherJ. The specific kind of internal documentation stems from the Elucidative Programming tradition where documentation and source code are separate entities tied together using hyperlinks. The tool supports the programmer in creating and managing internal documentation of Java source code. The hypertext-based documentation is presented in the IDE where a range of navigational features helps the programmer with finding relevant documentation for a given part of the source code. It is concluded that integration of such a tool is indeed possible as well as easy to do in an open IDE like TogetherJ. We expect that we can obtain similar results using other open IDEs. Categories and Subject Descriptors D.2.7 [Software Engineering]: Distribution, Maintenance, and Enhancement Documentation; H.5.4 [Information Interfaces and Presentation]: Hypertext/Hypermedia Navigation General Terms Documentation Keywords Documentation, Elucidative Programming, Java, Literate Programming 1. INTRODUCTION Modern integrated development environments (IDEs) for Java provide programmers with several features that make code production easier and faster. Such features include code completion, dynamic syntax highlighting, convenient Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. Copyright 200X ACM X-XXXXX-XX-X/XX/XX...$5.00. code navigation, code templates and help in performing various refactoring tasks. In addition, IDEs help programmers with managing and configuring code projects. For example, automatically setting up web-servers and deploying complex web-service projects as well as automatically configuring ordinary applications. With the advent of JavaDoc [8] interface documentation now plays an important role in software development. Most IDEs for Java therefore provide support such as JavaDoc popups during code completion, JavaDoc indices, and wizards. Wizards help the programmer with producing actual JavaDocs for a given code project, detecting undocumented interfaces, and inserting code comment templates. In addition, some IDEs [19] support UML modeling which, at least at an overall design level, can be considered as a way to document software as well. Although interface documentation is popular and does preserve an understanding of the different interfaces between the components of a program it does not preserve an actual understanding of a program. Internal documentation is a more thorough kind documentation that captures an understanding of the internal properties of a program. Internal documentation is intended for current and future developers and explains how and why the program works in order to preserve the program understanding over time. As time passes the understanding of how and why a program works disappears. Later on, when the program is to be maintained or further developed even the original programmers will have a hard time re-gaining an understanding of the program. A well known form of internal documentation is Literate Programming [10]. A literate program is represented as text interleaved with fragments of a program. Each program fragment is explained in the surrounding text, and as such a literate program can be seen as an essay explaining the program. Due to the practical problems that arise when program and documentation are represented as a single entity an alternative approach called Elucidative Programming has been coined [12, 11, 13]. In Elucidative Programming the program and the documentation are separate entities. Explanations in the documentation are related to relevant program fragments through bi-directional links. The links allow navigation from an explanation to the specific place in the program that is being explained as well as navigation from program fragments to explanations in the documentation. Writing internal documentation is often thought of as a time consuming task, although internal documentation is often considered a desirable supplement to source code. How-

2 ever, modern IDEs lack support for writing internal documentation. Such tools are often standalone tools such as the tools known from the world Literate Programming [9, 14, 15]. Some of these tools include functionality known from modern IDEs, but they never become nearly as powerful. It is simply too big a task or not feasible for a small team of researches to implement an entire IDE. Other standalone tools are non-integrated tools. For example, the current tool support for Elucidative Programming is a nonintegrated tool using Emacs for editing documentation and source code, whereas a web-browser must be used in order to utilize the bi-directional links when reading documentation. This setup disturbs the work of the programmer as it is necessary to switch between the two tools and manually bring what is in focus in one tool into focus in the other tool [22]. Hence, the aim of the research presented in this paper is to investigate how internal documentation can be created, managed, and presented in a modern IDE. Making use of an already existing IDE relieves us from developing a programming environment from scratch. In addition, many real programs are written using modern IDEs. It is therefore desirable to have support for internal documentation as an integrated tool in an IDE. The main contribution of this paper is to demonstrate that it is possible to integrate tool support that provides tractable navigation between internal documentation and Java source code in a modern IDE. As a minor contribution we demonstrate that it is possible to integrate our own programming tools in a modern commercial IDE. The rest of this paper is organized as follows. Section 2 provides a short background on Elucidative Programming. Section 3 presents the considerations done prior to integrating support in an IDE along with some related work. Section 4 describes the integrated elucidative support in TogetherJ. Finally, in section 5 we conclude on the work done so far and outline some future work. 2. TOOL BACKGROUND Elucidative Programming [12, 11, 13] is a variation of Literate Programming and was coined because Literate Programming was found to be unfit for modern software development [13]. When using literate programming, the programmer must split the program into pieces and physically embed these in the documentation. This is often a nuisance for programmers and programming tools. It is more attractive to keep program and documentation separated, which also allows an independent evolution of both program and documentation. Elucidative Programming is general useful in any situation where there is a need for writing about a program, such as when writing internal documentation, during code reviews, and when writing program tutorials [22]. In internal documentation we wish to represent understandings of selected aspects of the program, much like in program tutorials where we wish to inform the user about the internal properties of a program especially with the goal of informing the user on how to use the program for construction or composition of another program. Elucidative Programming, unlike Literate Programming, allows us to write about a program without altering the program. Furthermore, Elucidative Programming allows us to explain source code without drowning the source code in code comments. In order to tie program and documentation together the programmer can create links from documentation to abstractions in the program. This is for example useful when explaining how aspects that involve several parts of a program are implemented because the programmer can point out the actual source code that is involved. Such aspects are for example instances of design patterns in a program [22]. As Elucidative Programming supports addressing several program fragments in a single paragraph of documentation we can document an instance of a design pattern using a few paragraphs of text that relate all the involved program fragments. We use the term transverse issue for an aspect of a program whose description involves details from separate program units [22]. We also find a use for writing about the program in review situations where we wish to annotate parts of the program. Using Elucidative Programming reviewers can create documents that annotate the source code, and following programmers can easily find the actual parts of the source code that the reviewers has commented on. Similar, Elucidative Programming also makes it feasible to produce traces from requirement specifications to actual source code [22]. Currently, there exist tools for Elucidative Programming in Scheme [11] and in Java [13]. Both these tools are supported by Emacs [16, 17] at the editor level and by an ordinary web-browser at presentation level. The tool used in the work presented in this paper is The Java Elucidator, which has been evaluated through two experiments [20, 5]. An elucidative program is a collection of nodes (documentation and source code files) and links that tie the nodes together. As with any hypertext system, without feasible navigation between nodes programmers risk getting lost in the information. Mutual navigation between program and documentation is therefore provided in a two-framed layout where links from documentation to source code are rendered as hyperlinks anchored at both destination and source. This makes it easy to spot the parts of a program that are documented and bring up the corresponding documentation. The parts of a program that can be addressed from documentation are named syntactical abstractions such as classes, methods, attributes, and variables. In addition, by placing special comments, called source markers, in the code it is also possible to address arbitrary points in the source code. The Java Elucidator utilizes language knowledge and a database for storing information on program abstractions as well as abstractions in the documentation (links, sections and documents). This enables the Java Elucidator to provide link creation support and check the validity of links in the documentation. The Java Elucidator represents documentation in XML format using a collection of elements for specifying document structure, such as sections, sub-sections, document abstract, author, and last revision date. Special elements are used for specifying links from documentation to documentation and from documentation to source code. The Java Elucidator also supports having source code fragments inlined in the documentation [21]. These fragments are specified using a special language and are extracted when the documentation is presented (two source code extracts can be seen in figure 1, window 3). 3. INTEGRATED TOOL SUPPORT FOR IN- TERNAL DOCUMENTATION

3 An overall goal of integrating tool support for internal documentation in an IDE is bringing documentation in close proximity of the program. Internal documentation should not be considered as an external or secondary artifact, but rather as equally important as the source code [6]. Programmers rarely update documentation [7], but if the documentation is in close proximity of the program, while the programmer is working on the program, it becomes harder to ignore and the programmer is likely to be more compelled to maintain the documentation. A recent study among software professionals shows that a variety of tools are used when writing documentation, but a majority of the developers found word processors and JavaDoc-like tools to be the most useful [7]. JavaDoc-comments are hard to ignore as they are embedded in source code but documents written in a word processor external of the programming environment are more likely to be ignored. Seen from a tool perspective it is desirable to experiment with tools that can alleviate this problem and bring internal documentation into programming environments in such a way that the documentation is easy to manage and create as well as hard to ignore. The DOgMA tool combines hypertext and literate programming in order to support documentation and maintenance of C++ programs [15]. As in Elucidative Programming, documentation and source code is stored separately and linked together. From the documentation programmers can either address identifiers or any number of lines of code in succession. The first are rendered as hyperlinks and the latter are extracted from the source code and merged into the presentation of the documentation. Source code and documentation is presented in the DOgMA tool and highlighting schemes are used to improve readability of source code and documentation (e.g. identifies are rendered in boldface). The DOgMA tool provides two indices. The first provide information on all available nodes in the current project (source code files and classes, and documentation files and chapters). The second index shows nodes that have a relation to the currently displayed node (include files, subclasses, sub chapters). When studying source code the second index also shows documentation addressing any part of the currently displayed node. These indices provide the programmer with a useful context sensitive overview of both documentation and source code. The browsing facilities, except the context sensitive overview, provided by the DOgMA tool are similar to the facilities supplied by web-browser based solution used in the Java Elucidator (see section 2). Østerbye has experimented with a system for literate Smalltalk programming using hypertext where documentation and source code also can be written separately and interlinked freely [14]. As a contrast to the DOgMA tool, source code and documentation is not merged together when presented in Østerbyes tool. Instead they are displayed side-by-side, which is necessary because there can be several code fragments per explanation and vice versa. As in Elucidative Programming, Østerbyes approach introduces a tight coupling between documentation and program because the explanation of a single global effect can be linked to all pieces of code that are affected [14]. However, using the tool presented in [14] programmers can still loose the feeling for where the information at the screen belongs in the overall document. It is suggested to improve the system by having the destination of links in-lined in both documentation and source code. Modern IDEs provide source code navigation that is superior to the navigation supplied in both the tools described above and the current Java Elucidator. In order to provide support for internal documentation inside a modern IDE it is necessary to introduce a documentation perspective that can be plugged into the IDE. The documentation perspective must support creation and management of internal documentation as well as produce presentations of internal documentation inside the IDE. The main purpose of this documentation perspective is to bring documentation into close proximity of the program while it is being developed and maintained. By presenting source code and documentation side-byside, in two windows, we can ensure a close proximity between explanation and the actual source code that is being explained [14]. When reading documentation in one window, links to source code can be activated and the associated source code element is scrolled into view in the other window. This makes it possible to read source code and documentation sequentially as advocated for in [18], which addresses a hierarchy of cognitive issues to consider during design of software exploration tools. When studying a source file all links from documentation to any part of that specific file are potentially relevant. It is desirable to be able to mark-up source code elements in order to inform the programmer of which of these are addressed in the documentation. These marked source code elements can be used as anchor points for links to the documentation and provide the programmer with a context sensitive overview of relevant documentation. We use the term navigational proximity [13] for this kind of tight coupling between source code and documentation. Although links and indices are provided, navigation in an elucidative program can become confusing. When using the Java Elucidator the documentation nodes (XML documents) are placed in catalogues starting from a specific root catalogue. This helps the programmer to organize the documentation. For example, different catalogues can be created to hold documentation of design, implementation and test. Instead of visualizing the documentation nodes and their associations as a web it is often enough to visualize the catalogue structure. This structure is convenient when managing the documentation because documents can be categorized and grouped according to the aspects of the program that are being explained. Besides navigational facilities there are some more basic facilities connected with creating, managing, and browsing documentation that must be supported by the documentation perspective. These activities can roughly be divided into editing and reading activities. When editing it is crucial to be able to easily create links from documentation to source code (and from documentation to documentation). Making these by hand is simply not feasible. This is also a concern in [15] and [14] where both tools support link creation in a desirable point and click fashion. When reading an XML document the volumes footprint of the elements often becomes too disturbing. It is desirable to have editor support such as syntax highlighting, structure outlining, element completion or a WYSIWYG editor. The

4 latter is especially preferable when reading documentation. 4. INTEGRATING TOOL SUPPORT IN AN OPEN IDE An open API allows programmers to integrate tools in a given IDE. First of all, an open API must provide means for reacting on events within the IDE, such as when code projects are opened and closed, and editor events such as cursor movement. In addition, the open API must provide an interface for loading source code into code editors and bringing specific parts of the source code into focus. Finally, the API must provide means for integrating special editors and viewers. More and more IDEs has an open API. Not just open source Java environments such as NetBeans [4] and Eclipse [2], but also commercial environments such as Borlands family of IDEs [1] and Microsoft Visual Studio.NET [3]. Through comparison of a number of APIs [19, 2, 3, 1] we have found that although the APIs are quite different all the IDEs are open enough to allow integration of the Java Elucidator. However, appearance and ease of implementation will differ from IDE to IDE because of their individual limitations. The integrated tool support presented in this paper has been performed in TogetherJ [19]. TogetherJ is written in Java and supplies an adequate open API for our purposes. TogetherJ was chosen because it is becoming an increasingly popular commercial IDE and it is written in Java making it easy to reuse parts of the Java Elucidator. In addition, TogetherJ supports UML modeling which might be interesting to combine with internal documentation in future experiments. The screenshot in figure 1 shows the current elucidative documentation perspective for TogetherJ (windows 2 and 3). Documentation is written and read in window 3, which consists of four tabs: Editor tab is a simple text editor with syntax highlighting for XML. Links are created in two steps. First the destination of the link is marked in the source code editor (window 1). Following, the source of the link is marked in the documentation in the editor tab, and the tool then inserts a link element. Preview tab displays XML documents in a pretty-print version in a web-browser. Various documentation indices can be presented in the previewer. This includes a documentation index with keyword search options. Message tab mainly displays information from the background abstraction process that synchronizes the database with documentation and program files (see section 2). When an invalid link in the documentation is detected this is reported as a clickable error message that brings the invalid link into focus in the editor tab. Catalogue tab displays a file explorer which provides an overview of the physical catalogue organization of the documentation, see figure 2. From this tab documents can be opened in either the preview or editor tab, and new documents can be created by selecting from a range of template documents. Navigation is provided from links in both the preview and editor tab to their actual destination in the source code (window 1). In addition, if holding the control key while switching from one tab to the other, the document being displayed in the first tab is automatically loaded into the second tab. It has proved to be a bit more difficult to provide a good way to display relevant documentation for source code. The open API for TogetherJ does not allow us to manipulate the visual appearance of the code editor, such as highlighting specific syntactical elements. It would be desirable if the API included an interface for visually marking elements in the code editor, which also could prove useful when integrating other kinds of tools such as code visualization tools. The open API for TogetherJ is however not the only one that has this limitation. It is often not possible to manipulate the visual appearance, such as syntax highlighting, of source code editors in an IDE. As a remedy relevant documentation for the current cursor position in the program source is listed in a tree index in window 2. Elements directly under the root in the tree represent links to the source code element at the current cursor position. When the cursor is inside a method body any links to the method or any parts of its body are displayed under a branch in the tree. Similar, links to the surrounding class are displayed under a separate branch in the tree. In this way the programmer is informed of any link in the documentation addressing the specific named abstraction at the current cursor position as well as documentation addressing the context of the named abstraction. By right clicking in the tree index the programmer can choose to open the respective document in either the preview or editor tab. In addition, the programmer can choose to have the actual link in question scrolled into view. If the programmer double clicks on an element in the tree the corresponding source code element is scrolled into focus in window CONCLUSIONS We have presented a prototype tool that demonstrates how Elucidative Programming can be integrated in a modern IDE. The tool introduces a documentation perspective in TogetherJ that provides navigational proximity between Java source code and its internal documentation. The tool suggests how hypertext based documentation can be integrated in an IDE. The focus so far has been to produce a prototype that demonstrates that it is indeed possible to integrate Elucidative Programming in a modern IDE. The integrated tool support has been used to document the tool itself and study existing documentation of the Java Elucidator. However, real users must be exposed to the tool in order to fully evaluate the tool and direct further development. Based on previous experiments [20, 5] we expect that the tool to be an attractive alternative to existing documentation tools that allow the programmer to write documentation ranging from persistent documents (e.g. requirements) to more transient documents (e.g. notes and code commentaries). We have found that integration of programming tools in an IDE like TogetherJ is quite easy when one first become familiar with the open API. In the future we expect to see more tools integrated into IDEs, especially the Eclipse IDE is becoming increasingly popular. Eclipse is open source and it is therefore possible to extend the source code editor. This makes it attractive to experiment with a documentation perspective for Eclipse because it becomes possible to

5 1 2 3 Figure 1: Screenshot of the integrated support for Elucidative Programming in TogetherJ. Figure 2: Screenshot of the integrated support for Elucidative Programming in TogetherJ showing the catalogue tab.

6 markup source code that is documented. 6. REFERENCES [1] Borland software corporation. Available via [2] Eclipse platform, open source platform. Available via [3] Microsoft Visual Studio.NET. Available via [4] Netbeans, open source platform. Available via [5] M. R. Andersen and C. N. Christensen. Evaluating elucidative programming in an industrial setting. Unpublished paper available via December [6] D. Deveaux, R. Fleurquin, and P. Frison. Software engineering teaching: a docware approach. In Proceedings of the 4th annual SIGCSE/SIGCUE ITiCSE conference on Innovation and technology in computer science education, pages ACM Press, [7] A. Forward and T. C. Lethbridge. The relevance of software documentation, tools and technologies: a survey. In Proceedings of the 2002 ACM symposium on Document engineering, pages ACM Press, [8] L. Friendly. The design of distributed hyperlinked programming documentation. In S. Frass, F. Garzotto, T. Isakowitz, J. Nanard, and M. Nanard, editors, Proceedings of the International Workshop on Hypermedia Design (IWHD 95), Montpellier, France, [9] D. E. Knuth. The WEB system of structured documentation. Technical Report STAN-CS , Department of Computer Science, Stanford University, September [10] D. E. Knuth. Literate programming. The Computer Journal, 27(2):97 111, May [11] K. Nørmark. Elucidative programming. Nordic Journal of Computing, 7(2):87 105, [12] K. Nørmark. Requirements for an elucidative programming environment. In Eight International Workshop on Program Comprehension. IEEE, June [13] K. Nørmark, M. Andersen, C. Christensen, V. Kumar, S. Staun-Pedersen, and K. Sørensen. Elucidative programming in java. In Proceedings on the eighteenth annual international conference on Computer documentation (SIGDOC), pages IEEE Educational Activities Department, September [14] K. Østerbye. Literate Smalltalk programming using hypertext. IEEE Transactions on Software Engineering, 21(2): , February [15] J. Sametinger and G. Pomberger. A hypertext system for literate c++ programming. Journal of Object-Oriented Programming, 4(8):24 29, January [16] R. Stallman. Emacs: The extensible, customizable, self-documenting display editor. In D. Barstow, H. Shrobe, and E. Sandewall, editors, Interactive Programming Environments, pages McGraw-Hill, [17] R. Stallman. GNU Emacs manual. The Free Software Foundation Inc, June [18] M.-A. Storey, F. Fracchia, and H. Muller. Cognitive design elements to support the construction of a mental model during software visualization. In Proceedings of the Fifth International Workshop on Program Comprehension, pages 17 28, March [19] TogetherSoft. TogetherJ. Available via [20] T. Vestdam. Introducing elucidative programming in student projects. Unpublished paper available via January [21] T. Vestdam. Elucidative program tutorials. Nordic Journal of Computing, 9(3): , [22] T. Vestdam and K. Nørmark. Aspects of internal program documentation - an elucidative perspective. In International Workshop on Program Comprehension. IEEE, July 2002.

The Vicinity of Program Documentation Tools

The Vicinity of Program Documentation Tools The Vicinity of s Kurt Nørmark Department of Computer Science Aalborg University Denmark normark@cs.aau.dk Abstract documentation plays a vital role in almost all programming processes. documentation flows

More information

ELUCIDATIVE PROGRAMMING

ELUCIDATIVE PROGRAMMING Nordic Journal of Computing ELUCIDATIVE PROGRAMMING KURT NØRMARK Department of Computer Science Fredrik Bajers Vej 7E, 9220 Aalborg Ø, Denmark. E-mail: normark@cs.auc.dk Abstract. In this paper we introduce

More information

Maintaining Program Understanding - Issues, Tools, and Future Directions

Maintaining Program Understanding - Issues, Tools, and Future Directions Maintaining Program Understanding - Issues, Tools, and Future Directions Thomas Vestdam and Kurt Nørmark Department of Computer Science, Aalborg University, Denmark {odin,normark}@cs.aau.dk http://dopu.cs.aau.dk

More information

Web Annotator. Dale Reed, Sam John Computer Science Department University of Illinois at Chicago Chicago, IL

Web Annotator. Dale Reed, Sam John Computer Science Department University of Illinois at Chicago Chicago, IL Web Annotator Dale Reed, Sam John Computer Science Department University of Illinois at Chicago Chicago, IL 60607-7053 reed@uic.edu, sjohn@cs.uic.edu Abstract The World Wide Web is increasingly becoming

More information

Innovasys HelpStudio 3 Product Data Sheet

Innovasys HelpStudio 3 Product Data Sheet Innovasys HelpStudio 3 Product Data Sheet Innovasys HelpStudio 3 Product Data Sheet This Product Data Sheet provides information on Innovasys HelpStudio v3, released on 6th April 2007. Full product information

More information

An Interactive Tutorial System for Java

An Interactive Tutorial System for Java An Interactive Tutorial System for Java Eric Roberts Stanford University eroberts@cs.stanford.edu ABSTRACT As part of the documentation for its library packages, the Java Task Force (JTF) developed an

More information

Documenting Java Database Access with Type Annotations

Documenting Java Database Access with Type Annotations Documenting Java Database Access with Type Annotations Paul L. Bergstein Dept. of Computer and Information Science, University of Massachusetts Dartmouth 285 Old Westport Rd., Dartmouth, MA 02747 pbergstein@umassd.edu

More information

Quark XML Author September 2016 Update for Platform with Business Documents

Quark XML Author September 2016 Update for Platform with Business Documents Quark XML Author 05 - September 06 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository... Creating a new document from

More information

A Java Execution Simulator

A Java Execution Simulator A Java Execution Simulator Steven Robbins Department of Computer Science University of Texas at San Antonio srobbins@cs.utsa.edu ABSTRACT This paper describes JES, a Java Execution Simulator that allows

More information

Introduction to Programming

Introduction to Programming Introduction to Programming Course ISI-1329 - Three Days - Instructor-Led Introduction This three-day, instructor-led course introduces students to computer programming. Students will learn the fundamental

More information

Aalborg University Department of Computer Science

Aalborg University Department of Computer Science Aalborg University Department of Computer Science Database and Programming Technologies Title: The lucidator for Java Topic: Software Documentation for Developers Project period: 2/9-1999 17/1-2000 Project

More information

challenges in domain-specific modeling raphaël mannadiar august 27, 2009

challenges in domain-specific modeling raphaël mannadiar august 27, 2009 challenges in domain-specific modeling raphaël mannadiar august 27, 2009 raphaël mannadiar challenges in domain-specific modeling 1/59 outline 1 introduction 2 approaches 3 debugging and simulation 4 differencing

More information

An Eclipse Plug-In for Generating Database Access Documentation in Java Code

An Eclipse Plug-In for Generating Database Access Documentation in Java Code An Eclipse Plug-In for Generating Database Access Documentation in Java Code Paul L. Bergstein and Aditya Gade Dept. of Computer and Information Science, University of Massachusetts Dartmouth, Dartmouth,

More information

An Annotation Tool for Semantic Documents

An Annotation Tool for Semantic Documents An Annotation Tool for Semantic Documents (System Description) Henrik Eriksson Dept. of Computer and Information Science Linköping University SE-581 83 Linköping, Sweden her@ida.liu.se Abstract. Document

More information

Quark XML Author for FileNet 2.5 with BusDocs Guide

Quark XML Author for FileNet 2.5 with BusDocs Guide Quark XML Author for FileNet 2.5 with BusDocs Guide CONTENTS Contents Getting started...6 About Quark XML Author...6 System setup and preferences...8 Logging in to the repository...8 Specifying the location

More information

Abstractions in Multimedia Authoring: The MAVA Approach

Abstractions in Multimedia Authoring: The MAVA Approach Abstractions in Multimedia Authoring: The MAVA Approach Jürgen Hauser, Jing Tian Institute of Parallel and Distributed High-Performance Systems (IPVR) University of Stuttgart, Breitwiesenstr. 20-22, D

More information

Quark XML Author October 2017 Update with Business Documents

Quark XML Author October 2017 Update with Business Documents Quark XML Author 05 - October 07 Update with Business Documents Contents Getting started... About Quark XML Author... Working with documents... Basic document features... What is a business document...

More information

WPS Workbench. user guide. "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs"

WPS Workbench. user guide. To help guide you through using the WPS user interface (Workbench) to create, edit and run programs WPS Workbench user guide "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs" Version: 3.1.7 Copyright 2002-2018 World Programming Limited www.worldprogramming.com

More information

JQueryScapes: customizable Java code perspectives

JQueryScapes: customizable Java code perspectives JQueryScapes: customizable Java code perspectives [Forum Demonstration Proposal] Lloyd Markle, Kris De Volder Department of Computer Science University of British Columbia Vancouver, BC, Canada 604-822-1290

More information

NaCIN An Eclipse Plug-In for Program Navigation-based Concern Inference

NaCIN An Eclipse Plug-In for Program Navigation-based Concern Inference NaCIN An Eclipse Plug-In for Program Navigation-based Concern Inference Imran Majid and Martin P. Robillard School of Computer Science McGill University Montreal, QC, Canada {imajid, martin} @cs.mcgill.ca

More information

Quark XML Author October 2017 Update for Platform with Business Documents

Quark XML Author October 2017 Update for Platform with Business Documents Quark XML Author 05 - October 07 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository...3 Creating a new document from

More information

Quark XML Author 2015 October Update with Business Documents

Quark XML Author 2015 October Update with Business Documents Quark XML Author 2015 October Update with Business Documents CONTENTS Contents Getting started...6 About Quark XML Author...6 Working with documents...8 Basic document features...8 What is a business document...8

More information

Quark XML Author for FileNet 2.8 with BusDocs Guide

Quark XML Author for FileNet 2.8 with BusDocs Guide Quark XML Author for FileNet.8 with BusDocs Guide Contents Getting started... About Quark XML Author... System setup and preferences... Logging on to the repository... Specifying the location of checked-out

More information

BIG MODELS AN ALTERNATIVE APPROACH

BIG MODELS AN ALTERNATIVE APPROACH 2. BIG MODELS AN ALTERNATIVE APPROACH Whitepaper Eclipse Summit 2008 Modeling Symposium Jos Warmer, Ordina (jos.warmer@ordina.nl) Abstract Scaling up modeling within project runs into many practical problems.

More information

Introducing live graphics gems to educational material

Introducing live graphics gems to educational material Introducing live graphics gems to educational material Johannes Görke, Frank Hanisch, Wolfgang Straíer WSI/GRIS University of Tübingen, Sand 14, 72076 Tübingen, Germany Thiruvarangan Ramaraj CS525 Graphics

More information

A Guide to CMS Functions

A Guide to CMS Functions 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 INTRODUCTION... 3 1.1 Who Should Read This Guide 3 1.2 What You Will Learn 3 2 WHAT IS A CMS

More information

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Content 1 INTRODUCTION... 4 1.1 Page-based systems versus item-based systems 4 1.2 Browser support 5

More information

JSF Tools Reference Guide. Version: M5

JSF Tools Reference Guide. Version: M5 JSF Tools Reference Guide Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features of JSF Tools... 1 2. 3. 4. 5. 1.2. Other relevant resources on the topic... 2 JavaServer Faces Support... 3 2.1. Facelets

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Adaptable and Adaptive Web Information Systems. Lecture 1: Introduction

Adaptable and Adaptive Web Information Systems. Lecture 1: Introduction Adaptable and Adaptive Web Information Systems School of Computer Science and Information Systems Birkbeck College University of London Lecture 1: Introduction George Magoulas gmagoulas@dcs.bbk.ac.uk October

More information

Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT

Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Karl Trygve Kalleberg 1 Department of Informatics, University of Bergen, P.O. Box 7800, N-5020 BERGEN,

More information

Business Intelligence and Reporting Tools

Business Intelligence and Reporting Tools Business Intelligence and Reporting Tools Release 1.0 Requirements Document Version 1.0 November 8, 2004 Contents Eclipse Business Intelligence and Reporting Tools Project Requirements...2 Project Overview...2

More information

Spemmet - A Tool for Modeling Software Processes with SPEM

Spemmet - A Tool for Modeling Software Processes with SPEM Spemmet - A Tool for Modeling Software Processes with SPEM Tuomas Mäkilä tuomas.makila@it.utu.fi Antero Järvi antero.jarvi@it.utu.fi Abstract: The software development process has many unique attributes

More information

Introduction to Extended Common Coupling with an Application Study on Linux

Introduction to Extended Common Coupling with an Application Study on Linux Introduction to Extended Common Coupling with an Application Study on Linux Liguo Yu Computer Science and Informatics Indiana University South Bend 1700 Mishawaka Ave. P.O. Box 7111 South Bend, IN 46634,

More information

Authoring and Maintaining of Educational Applications on the Web

Authoring and Maintaining of Educational Applications on the Web Authoring and Maintaining of Educational Applications on the Web Denis Helic Institute for Information Processing and Computer Supported New Media ( IICM ), Graz University of Technology Graz, Austria

More information

Supplement H.1: JBuilder X Tutorial. For Introduction to Java Programming, 5E By Y. Daniel Liang

Supplement H.1: JBuilder X Tutorial. For Introduction to Java Programming, 5E By Y. Daniel Liang Supplement H.1: JBuilder X Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with JBuilder Creating a Project Creating, Compiling,

More information

Lab 1 MonarchPress Product Description. Robert O Donnell CS411. Janet Brunelle. September 20, Version #2

Lab 1 MonarchPress Product Description. Robert O Donnell CS411. Janet Brunelle. September 20, Version #2 Lab 1 MonarchPress Description 1 Lab 1 MonarchPress Product Description Robert O Donnell CS411 Janet Brunelle September 20, 2015 Version #2 Lab 1 MonarchPress Description 2 Table of Contents 1 INTRODUCTION...

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

Software Development 1 Advanced > Task X: NetBeans IDE

Software Development 1 Advanced > Task X: NetBeans IDE 0415765 Introduction NetBeans IDE 3.6, a free open source development environment for Java developers, is a highly productive tool for developing applications based on Java technology, from standalone

More information

Mobile Application Workbench. SAP Mobile Platform 3.0 SP02

Mobile Application Workbench. SAP Mobile Platform 3.0 SP02 SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC-01-0302-01 LAST REVISED: January 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced

More information

A Domain-Customizable SVG-Based Graph Editor for Software Visualizations

A Domain-Customizable SVG-Based Graph Editor for Software Visualizations A Domain-Customizable SVG-Based Graph Editor for Software Visualizations Tony Lin, Feng Zou, Holger M. Kienle and Hausi A. Müller University of Victoria, Canada {gaoyun,fzou,kienle,hausi}@cs.uvic.ca Abstract

More information

Hermion - Exploiting the Dynamics of Software

Hermion - Exploiting the Dynamics of Software Hermion - Exploiting the Dynamics of Software Authors: David Röthlisberger, Orla Greevy, and Oscar Nierstrasz Affiliation: Software Composition Group, University of Bern, Switzerland Homepage: http://scg.iam.unibe.ch/research/hermion

More information

Java Framework for Database-Centric Web Site Engineering

Java Framework for Database-Centric Web Site Engineering Java Framework for Database-Centric Web Site Engineering Beat Signer, Michael Grossniklaus and Moira C. Norrie fsigner, grossniklaus, norrieg@inf.ethz.ch Institute for Information Systems ETH Zurich CH-8092

More information

Key Properties for Comparing Modeling Languages and Tools: Usability, Completeness and Scalability

Key Properties for Comparing Modeling Languages and Tools: Usability, Completeness and Scalability Key Properties for Comparing Modeling Languages and Tools: Usability, Completeness and Scalability Timothy C. Lethbridge Department of Electrical Engineering and Computer Science, University of Ottawa

More information

Support for participation in electronic paper prototyping

Support for participation in electronic paper prototyping Support for participation in electronic paper prototyping DEARDEN, Andy , NAGHSH, A. and OZCAN, M. B. Available from Sheffield Hallam University Research Archive (SHURA)

More information

An Eclipse-based Environment for Programming and Using Service-Oriented Grid

An Eclipse-based Environment for Programming and Using Service-Oriented Grid An Eclipse-based Environment for Programming and Using Service-Oriented Grid Tianchao Li and Michael Gerndt Institut fuer Informatik, Technische Universitaet Muenchen, Germany Abstract The convergence

More information

Increasing research efficiency. Lucia Franco 15 April 2010

Increasing research efficiency. Lucia Franco 15 April 2010 Content Innovation Increasing research efficiency Lucia Franco 15 April 2010 Content Innovation A Journey Article of the Future Why, How, What Cell Press case Feedback Other disciplines Contextual Linking

More information

SmartWord4TFS Step-by-Step Guide

SmartWord4TFS Step-by-Step Guide Guide CONTENTS Overview... 3 Key Takeaways... 3 Working Modes... 4 User Interface... 4 Ribbon Bar... 4 Ribbon Bar options in Template Designing Mode... 4 Ribbon Bar options in Template Designing Mode...

More information

Automatic Generation of Graph Models for Model Checking

Automatic Generation of Graph Models for Model Checking Automatic Generation of Graph Models for Model Checking E.J. Smulders University of Twente edwin.smulders@gmail.com ABSTRACT There exist many methods to prove the correctness of applications and verify

More information

Creating a Course Web Site

Creating a Course Web Site Creating a Course Web Site What you will do: Use Web templates Use shared borders for navigation Apply themes As an educator or administrator, you are always looking for new and exciting ways to communicate

More information

Explora - Basic Search

Explora - Basic Search Explora - Basic Search From the Explora home screen, you can quickly search for the information you need to complete research and classroom assignments. To create a Basic Search: 1. Enter your search terms

More information

IBM SPSS Statistics and open source: A powerful combination. Let s go

IBM SPSS Statistics and open source: A powerful combination. Let s go and open source: A powerful combination Let s go The purpose of this paper is to demonstrate the features and capabilities provided by the integration of IBM SPSS Statistics and open source programming

More information

Perceptive Nolij Web. Release Notes. Version: 6.8.x

Perceptive Nolij Web. Release Notes. Version: 6.8.x Perceptive Nolij Web Release Notes Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates. Table of Contents Perceptive Nolij Web

More information

ODA : PROCESSING MODEL DESIGN FOR LINKING DOCUMENT

ODA : PROCESSING MODEL DESIGN FOR LINKING DOCUMENT www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 2 Issue 3 March 2013 Page No. 806-810 ODA : PROCESSING MODEL DESIGN FOR LINKING DOCUMENT R. N. Jugele *, Dr.

More information

User Interface Design. Slide Set to accompany. Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman

User Interface Design. Slide Set to accompany. Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman Chapter 11 User Interface Design Slide Set to accompany Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman For non-profit

More information

Supplement II.B(1): JBuilder X Tutorial. For Introduction to Java Programming By Y. Daniel Liang

Supplement II.B(1): JBuilder X Tutorial. For Introduction to Java Programming By Y. Daniel Liang Supplement II.B(1): JBuilder X Tutorial For Introduction to Java Programming By Y. Daniel Liang This supplement covers the following topics: Getting Started with JBuilder Creating a Project Creating, Compiling,

More information

Macromedia RoboHelp Course Outline

Macromedia RoboHelp Course Outline Tel 0845 686 0266 http://www.multimediacentre.co.uk RoboHelp X5 Course Outline Description This 3-day instructor-led training course covers the strategies and development process of designing a Help system.

More information

IDERA ER/Studio Software Architect Evaluation Guide. Version 16.5/2016+ Published February 2017

IDERA ER/Studio Software Architect Evaluation Guide. Version 16.5/2016+ Published February 2017 IDERA ER/Studio Software Architect Evaluation Guide Version 16.5/2016+ Published February 2017 2017 IDERA, Inc. All rights reserved. IDERA and the IDERA logo are trademarks or registered trademarks of

More information

SERG. Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT

SERG. Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Delft University of Technology Software Engineering Research Group Technical Report Series Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Karl Trygve

More information

Caliber 11.0 for Visual Studio Team Systems

Caliber 11.0 for Visual Studio Team Systems Caliber 11.0 for Visual Studio Team Systems Getting Started Getting Started Caliber - Visual Studio 2010 Integration... 7 About Caliber... 8 Tour of Caliber... 9 2 Concepts Concepts Projects... 13 Baselines...

More information

ADT: Eclipse development tools for ATL

ADT: Eclipse development tools for ATL ADT: Eclipse development tools for ATL Freddy Allilaire (freddy.allilaire@laposte.net) Tarik Idrissi (tarik.idrissi@laposte.net) Université de Nantes Faculté de Sciences et Techniques LINA (Laboratoire

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

20486: Developing ASP.NET MVC 4 Web Applications (5 Days)

20486: Developing ASP.NET MVC 4 Web Applications (5 Days) www.peaklearningllc.com 20486: Developing ASP.NET MVC 4 Web Applications (5 Days) About this Course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Framework Documentation

Framework Documentation Framework Documentation Prof. Uwe Aßmann TU Dresden Institut für Software und Multimediatechnik Lehrstuhl Softwaretechnologie 07-1.0, Jan 08, 2007 Design Patterns and Frameworks, Prof. Uwe Aßmann 1 References

More information

Extensible and Dynamic Data Structure Viewers in Java

Extensible and Dynamic Data Structure Viewers in Java Extensible and Dynamic Data Structure Viewers in Java Jhilmil Jain Computer Science and Software Engineering Department, Auburn University, Auburn AL Email: jainjhi@auburn.edu Problem & motivation Many

More information

In this Tutorial we present tips and trick for the development enviroment eclipse and the extension MyEclipse.

In this Tutorial we present tips and trick for the development enviroment eclipse and the extension MyEclipse. Tips and tricks for eclipse and the IDE MyEclipse In this Tutorial we present tips and trick for the development enviroment eclipse and the extension MyEclipse. Generals Author: Sascha Wolski Sebastian

More information

The user guide may be freely distributed in its entirety, either digitally or in printed format, to all EPiServer Composer users.

The user guide may be freely distributed in its entirety, either digitally or in printed format, to all EPiServer Composer users. Copyright This user guide is protected by the Copyright Act. Changes to the contents, or partial copying of the contents, may not be made without permission from the copyright holder. The user guide may

More information

23. Framework Documentation

23. Framework Documentation 23. Framework Documentation Prof. Uwe Aßmann TU Dresden Institut für Software und Multimediatechnik Lehrstuhl Softwaretechnologie 11-1.0, 23.12.11 Design Patterns and Frameworks, Prof. Uwe Aßmann 1 References

More information

SOFA NetBeans Module

SOFA NetBeans Module Charles University, Prague Distributed Systems Research Group SOFA NetBeans Module an introductory guide Revision 1.0 June 2003 Contents 1 Module s Essentials 3 1.1 Introduction........................

More information

WEBCON BPS New features and improvements

WEBCON BPS New features and improvements New features and improvements 00 CONTENTS 1. Form rules engine complex form behavior made easy... 4 2. Further development of the business rules engine... 7 2.1. New operators... 7 2.2. Ergonomic improvements

More information

Integrating Multiple Approaches for Interacting with Dynamic Data Structure Visualizations

Integrating Multiple Approaches for Interacting with Dynamic Data Structure Visualizations Electronic Notes in Theoretical Computer Science 224 (2009) 141 149 www.elsevier.com/locate/entcs Integrating Multiple Approaches for Interacting with Dynamic Data Structure Visualizations James H. Cross

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Course 20486B; 5 days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

Component-Level Design. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only

Component-Level Design. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only Chapter 10 Component-Level Design Slide Set to accompany Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman For non-profit

More information

Develop Unified SNMP, XML, CLI, and Web-based Management for Embedded Real-Time Systems with MIBGuide

Develop Unified SNMP, XML, CLI, and Web-based Management for Embedded Real-Time Systems with MIBGuide 1 Overview Develop Unified SNMP, XML, CLI, and Web-based Management for Embedded Real-Time Systems with MIBGuide SNMP Research International, Inc. Knoxville, Tennessee 1 Overview Support for remote management

More information

Website Administration Manual, Part One

Website Administration Manual, Part One Website Administration Manual, Part One A Guide to the CMS & Widgets Curry School of Education Website http://curry.virginia.edu The Curry Website Administrators Manual - Part One 2 The CMS The content

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

Prototyping Navigation in Web-Based Information Systems Using WebML

Prototyping Navigation in Web-Based Information Systems Using WebML Prototyping Navigation in Web-Based Information Systems Using WebML Jaroslav KURUC 1, Peter DOLOG 2 and Mária BIELIKOVÁ 1 1 Institute of Informatics and Software Engineering, Faculty of Informatics and

More information

Eclipse Support for Using Eli and Teaching Programming Languages

Eclipse Support for Using Eli and Teaching Programming Languages Electronic Notes in Theoretical Computer Science 141 (2005) 189 194 www.elsevier.com/locate/entcs Eclipse Support for Using Eli and Teaching Programming Languages Anthony M. Sloane 1,2 Department of Computing

More information

20486-Developing ASP.NET MVC 4 Web Applications

20486-Developing ASP.NET MVC 4 Web Applications Course Outline 20486-Developing ASP.NET MVC 4 Web Applications Duration: 5 days (30 hours) Target Audience: This course is intended for professional web developers who use Microsoft Visual Studio in an

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper July 2009 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

Coral: A Metamodel Kernel for Transformation Engines

Coral: A Metamodel Kernel for Transformation Engines Coral: A Metamodel Kernel for Transformation Engines Marcus Alanen and Ivan Porres TUCS Turku Centre for Computer Science Department of Computer Science, Åbo Akademi University Lemminkäisenkatu 14, FIN-20520

More information

IBM Rational Developer for System z Version 7.5

IBM Rational Developer for System z Version 7.5 Providing System z developers with tools for building traditional and composite applications in an SOA and Web 2.0 environment IBM Rational Developer for System z Version 7.5 Highlights Helps developers

More information

A Tagging Approach to Ontology Mapping

A Tagging Approach to Ontology Mapping A Tagging Approach to Ontology Mapping Colm Conroy 1, Declan O'Sullivan 1, Dave Lewis 1 1 Knowledge and Data Engineering Group, Trinity College Dublin {coconroy,declan.osullivan,dave.lewis}@cs.tcd.ie Abstract.

More information

From: Sudarshan N Raghavan (770)

From: Sudarshan N Raghavan (770) Spectrum Software, Inc. 11445 Johns Creek Pkwy. Suite 300 Duluth, GA 30097 www.spectrumscm.com Subject: SpectrumSCM Plugin for the Eclipse Platform Original Issue Date: February 2 nd, 2005 Latest Update

More information

Lab 1 MonarchPress Product Description. Robert O Donnell. Old Dominion University CS411. Janet Brunelle. November 23, 2015.

Lab 1 MonarchPress Product Description. Robert O Donnell. Old Dominion University CS411. Janet Brunelle. November 23, 2015. Running Head: LAB 1 MONACHPRESS PRODUCT DESCRIPTION Lab 1 MonarchPress Product Description Robert O Donnell Old Dominion University CS411 Janet Brunelle November 23, 2015 Version #3 1 2 Table of Contents

More information

CA Productivity Accelerator 12.1 and Later

CA Productivity Accelerator 12.1 and Later CA Productivity Accelerator 12.1 and Later Localize Content Localize Content Once you have created content in one language, you might want to translate it into one or more different languages. The Developer

More information

RMM - Relationship Management Model

RMM - Relationship Management Model RMM - Relationship Management Model By Qasim Hasan & Sandeep Jauhal Monday November 22 nd, 2004 About RMM Developed at New York University s Stern School of Business by Isakowitz & others A design model

More information

2016 TRTA Content Managers Resource Guide How to update and edit your local unit website. Roy Varney, TRTA Multimedia Specialist

2016 TRTA Content Managers Resource Guide How to update and edit your local unit website. Roy Varney, TRTA Multimedia Specialist 2016 TRTA Content Managers Resource Guide How to update and edit your local unit website. Roy Varney, TRTA Multimedia Specialist Table of Contents Introduction... 1 Basic information... 1 - How to log

More information

Introduction. The topics included in this guide are:

Introduction. The topics included in this guide are: Introduction Caorda Content is a powerful content management tool that allows you to update your web site through a standard Internet web browser. The purpose of this guide is to introduce you to Caorda

More information

.NET & Web Services. Mike Lockyer, Gary Griffiths, Briony Oates, Barry Hebbron School of Computing. University of Teesside

.NET & Web Services. Mike Lockyer, Gary Griffiths, Briony Oates, Barry Hebbron School of Computing. University of Teesside .NET & Web Services Mike Lockyer, Gary Griffiths, Briony Oates, Barry Hebbron School of Computing Middlesbrough, TS1 3BA UK m.a.lockyer@tees.ac.uk ABSTRACT In this paper we present our current approach

More information

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x ImageNow eforms Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

1 Overview. 1 Overview. Contents. 1.1 Table of Contents Table of Contents

1 Overview. 1 Overview. Contents. 1.1 Table of Contents Table of Contents 1 Overview Contents 1. 1.1 Table of Contents 1 Overview Papyrus is an environment for editing any kind of EMF model, particularly supporting UML 2 ( Unified Modeling Language (UML) version 2.4.1 ) and

More information

Information Hiding and Aspect-Oriented Modeling

Information Hiding and Aspect-Oriented Modeling Information Hiding and Aspect-Oriented Modeling Wisam Al Abed and Jörg Kienzle School of Computer Science, McGill University Montreal, QC H3A2A7, Canada Wisam.Alabed@mail.mcgill.ca, Joerg.Kienzle@mcgill.ca

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS Borland Together FREQUENTLY ASKED QUESTIONS GENERAL QUESTIONS What is Borland Together? Borland Together is a visual modeling platform that enables software teams to consistently deliver on-time, high

More information

Version: Copyright World Programming Limited

Version: Copyright World Programming Limited Version: 3.0.7.0.650 Copyright 2002-2017 World Programming Limited www.teamwpc.co.uk Contents Introduction... 5 About This Guide... 5 About WPS...5 Users of SAS Software...6 Getting Started... 8 Workbench

More information

24. Framework Documentation

24. Framework Documentation 24. Framework Documentation 1 Prof. Uwe Aßmann TU Dresden Institut für Software und Multimediatechnik Lehrstuhl Softwaretechnologie 15-0.2, 23.01.16 Design Patterns and Frameworks, Prof. Uwe Aßmann Obligatory

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

CARMA STANDARD ACCESS REPOSITORY for Endevor Users

CARMA STANDARD ACCESS REPOSITORY for Endevor Users CARMA STANDARD ACCESS REPOSITORY for Endevor Users Author: Version: Version 1.0.6 Dr. Markus Bon, Carmelo Merino Q Group AG Im Langacker 16 CH-5405 Baden-Dättwil Hypothekarbank Lenzburg Account No.: 146.875.311

More information