Borland JBuilder 7 Product Certification. Study Guide

Size: px
Start display at page:

Download "Borland JBuilder 7 Product Certification. Study Guide"

Transcription

1 Borland JBuilder 7 Product Certification Study Guide Guía ofrecida por el Grupo Danysoft Primer Borland Learning Partner de España y Portugal Para realizar el examen o cursos oficiales preparatorios contacte con formación@danysoft.com, o llámenos al Version Copyright Borland Software Corporation.- All Rights Reserved.

2 Introduction This study guide is designed to walk you through requisite information to become product certified in JBuilder 7. The material in this document is organized in the following four sections: Test Overview describes the rules and the organization of the test Technical Resources recommends training courses, books and manuals that can help acquire the knowledge required to pass the test Test Sections lists topics tested in each test section Sample Questions provides sample questions with answers. 2 Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved.

3 Test Overview General Details The test is organized as follows, Online test (hosted by Prometric Prime web based testing system) Maximum time allowed for test is 60 minutes Test will contain 60 questions (total pool of questions is several hundred) Minimum score required to pass is 80% ( = 48 or more correct answers) All test questions are multiple choice. Most questions are of a multiple choice / single answer type. Some questions are multiple choice / multiple answer type. No partial credit is given for the later type of question. All test questions are equally weighted, and thus count equallytoward the final score. Organization of Questions The test's questions are grouped into the following sections of knowledge, JBuilder Interface and Configuration Java Libraries Java Beans Java Language/Objected Oriented Programming Database Concepts/Data Access Technique Java Virtual Machine InternetBeans Express Servlets Enterprise Java Beans (EJB) Deployment of Java Applications. Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved. 3

4 Each section contains a large pool of questions. At least one question is randomly chosen from each section. Every iteration of the test contains the same number of questions from each section. We do not provide the actual number of questions per section. Notice that some subject areas are considered to be advanced topics, or instance, Enterprise Java Beans (EJB). Although questions are asked on advanced topics, the questions themselves test fundamental knowledge of these topics. Thus a fundamental understanding and familiarity of advanced JBuilder topics is necessary for successful Borland JBuilder Product Certification. 4 Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved.

5 Resources Training Course Application Development with JBuilder 7 is a five-day instructor-led course available through Borland and Borland Certified Training Partners. See for details. On-line Documentation Borland JBuilder documentation can be obtained from, In particular review the following on line books: Building Applications Database Application Developer s Guide Getting Started with Java Web Application Developer s Guide Enterprise JavaBeans Developer s Guide (first five chapters) Further JBuilder information in the form of white papers and technical information documents may be found at: Further Java language information can be found at In particular: Books Cay S. Horstmann and Gary Cornell. Core Java 2, Volume1: Fundamentals. Fifth Edition. Sun Microsystems Press, Cay S. Horstmann and Gary Cornell. Core Java 2, Volume II: Advanced Features. Fourth Edition. Sun Microsystems Press, Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved. 5

6 Test Sections JBuilder Interface and Configuration This section tests the candidate s knowledge of basic JBuilder interface and configuration features and properties. The Object Inspector You will be expected to understand the functionality of the Object Inspector. All knowledge required to answers questions related to this subject is available in the Help system. How to determine if there is a property editor available for a specific property. How to invoke property editors. The interrelationships between various properties. Effects of setting properties on the settings of other properties. Simultaneously setting values of properties belonging to multiple components. The Debugger The ability to debug your programs, applets and beans is crucial to producing robust, commercial-quality code. The debugger information in the Help system contains the knowledge required to correctly answer questions in the test. IDE Definition, activation and use of Breakpoints Keystroke shortcuts How to debug applets Debugger settings and their function Knowing how to use the IDE to implement your projects is basic to the Certification process. The knowledge for this section of the test questions comes primarily from the Help system, but at this point you should have received enough training and practiced enough to understand all of these concepts. 6 Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved.

7 Docking and undocking of IDE windows IDE options and their use Project options The definition of the various file extensions for files created by JBuilder during the process of creating an application How to include.java code into projects How to reference classes in external packages not included with JBuilder Stable and unstable packages Libraries and their purpose in JBuilder Loading Java beans into the component palette Built-in Editor text formatting and indentation commands Java Libraries This section tests the candidate s knowledge of Java Foundation Classes (JFC), especially the classes belonging to the Swing toolkit. Components Like other Borland IDE products, JBuilder uses the component model for visual development of applications. Without an understanding of the components included in JBuilder, how they work, and their properties, methods and events, you will not be able to do your job. All of the knowledge required to answer questions related to these issues is located in the Help system. How to select and use components in your application efficiently Components as containers for other components How to identify parent containers of components Component properties and their functions Constraint properties Working with graphic images in components Working with menus, their properties, methods and events. Differences between similar components, such as JTextField and JTextArea How to select the right component when faced with similar functionality How to define and use dialog windows, including the differences between modal and modeless dialogs Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved. 7

8 How to assign focus in a frame, and how to get a component to refuse focus Manipulating fonts Exchanging data between components Frame layouts, what they are, how they work and when to set them Initializing the visual components of a frame Event-Driven Programming The event model introduced in Java 1.1 is used by both AWT and the wing toolkit (introduced in Java 1.2). To pass the certification test you must not only understand event-driven programming but also understand how events work in Java, the events associated with components and how to use them. Refer to the Help system for any information you need on this subject. Basic component events and how to use them Anonymous class events Event handler signatures Component listeners The AWT and Swing Toolkit JBuilder supplies several libraries of JavaBean components on the component palette for user interface design. These include components from the AWT and Swing toolkits as well as Borland s dbswing components (Professional and Enterprise editions only). Using these libraries requires knowledge of their class hierarchies. Again, these are documented in the JBuilder Help System. Understanding the JBuilder AWT class hierarchy AWT components and their functionality Limitations of AWT components The Window class, its properties and methods. Non Visual classes, their properties and methods Swing components, their methods and properties and how to use them How to deploy applications that use Swing JavaBeans This section tests the candidate s knowledge of basic architecture of JavaBeans and how JBuilder uses JavaBeans. A JavaBean is a collection of one or more Java 8 Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved.

9 classes that serves as a self-contained, reusable component. A JavaBean can be a discrete component used in building a user interface or a non-ui component such as a data module or computation engine. Refer to the Help system for complete coverage of this subject. Definition of JavaBeans Internal structure requirements of JavaBeans How to deploy JavaBeans How to use JavaBeans How to use the JavaBean Wizard Java Language/Objected Oriented Programming This section tests the candidate s knowledge of the Java programming language and features of objected oriented programming. Obviously, if you don t know the programming language, you can t use the programming tool. Everything needed to answer the questions about the language is also included in the Help system. How to exit a Java application Elements of the Java language Object Oriented Programming principles Declaring and using arrays in Java Typecasting Comparing class information Limitations of the Java language as compared to other programming languages. Method overloading Java keywords and their use Object Serialization, why it is done and how it works Synchronization and multithreading Thread classes, properties, methods and events Working with strings in Java Interfaces, their purpose and use Exception handling The Try...finally constructs Raising exceptions Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved. 9

10 Introspection, how, when and where it can be used Database Concepts/Data Access Techniques This section tests the candidate s knowledge of JBuilder s DataExpress Component Library, JBuilder s database tools, and JDBC. You can obtain the answers to the questions in this section from JBuilder s manual, Database Application Developer s Guide. Familiarity with using the DataExpress Component Library Thorough knowledge of the Database component Thorough knowledge of the QueryDataSet component The Query dialog, invocation, use and limitations Thorough knowledge of the Column component Functionality of the JDBC Monitor Functionality of the Database Pilot Functionality of the JDataStore Explorer Limitations of JDBC JDBC drivers, care and feeding Transaction-based processing, why and how it is done Java Virtual Machine This section tests the candidate s knowledge of the Java Virtual Machine. The JVM is an integral part of the Java environment. The information required to answer these questions can be found in a great many sources, including several dozen books. However, the JBuilder Help system documents enough of it to be able to answer the certification test questions. Garbage collection and memory management in the JVM Differences between heavyweight and lightweight components Requirements for deploying applications Determining the complete list of items in a Java package Security and the JVM 10 Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved.

11 InternetBeans Express This section tests the candidate s knowledge of InternetBeans Express. Test questions answers for these sections can be found in JBuilder s manual, Web Application Developer s Guide. What is InternetBeans Express technology Using an IXPageProducer Servlets This section tests the candidate s knowledge of Servlets. Test questions answers for these sections can be found in JBuilder s manual, Web Application Developer s Guide. Using JBuilder s Servlet wizard Configuring JBuilder to work with a web server Using servlets with HTTP s do, get, and post methods Communication between servlets Enterprise Java Beans (EJB) This section tests the candidate s basic knowledge of Enterprise Java Beans. You can obtain the answers to the questions in this section from JBuilder s manual, Enterprise Application Developer s Guide. Deploying an EJB. Functionality of JBuilder s EJB wizards RMI & IIOP, limitations Deployment of Java Applications This section tests the candidate s knowledge regarding deploying Java applications and using JBuilder s Deployment Wizard. Functionality of JBuilder s Deployment Wizard Deploying JDBC drivers Deploying images What the JDK does and does not include Deploying JAR files Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved. 11

12 Running applets in web browsers. 12 Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved.

13 Sample Questions Questions 1. Which are valid project options (select all that apply)? A) Exclude Class B) End of Line Characters C) Transform Trace Options D) Smart Step Settings 2. How can you undock the structure pane? A) Select Tools IDE Options and on the Display tab select the Undock panes option. B) Right click the mouse, when you are over the structure pane, and select Undock. C) You can t undock the structure pane from the AppBrowser 3. How can you stop a JTextArea object named jtextarea2 from accepting focus? A) jtextarea2.setfocus(false); B) jtextarea2.setenabled(false); C) jtextarea2.setcursor(false); D) You cannot stop a jtextarea2 from accepting focus. 4. How do you disable a jmenuitem object using JBuilder s menu designer (select all that apply)? A) In the Inspector, set the enabled property for the menu item to False. B) Right click on an existing menu item and select Disable C) Click on the Enable/Disable tool on the menu designer toolbar. D) The menu designer does not surface the jmenuitem enable property. Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved. 13

14 5. What are the differences between the jpr and jpx project file types (select all that apply)? A) A jpr project file is not readable with a text editor B) A jpx file is a binary file C) A jpx file is a XML file D) A jpx file type is required in order to use CVS with the project E) Other than the extension, there are no differences between the two file types. 6. Suppose there is a component Foo on the component palette. In order for JBuilder to display Foo s properties in the Inspector, there must be an associated FooBeanInfo class? A) True B) False 7. Which of the following are event listeners of the QueryDataset class (select all that apply)? A) open B) close C) access D) sort E) navigation 8. Which class would you use to store a string constant? A) StringArray class B) StringBuffer class C) String class D) None of the above. 9. A sealed package within a JAR file (select all that apply) A) specifies that all classes defined in that package file must originate from the same JAR. 14 Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved.

15 B) is encrypted. C) is not sealed unless the JAR that contains it is also sealed. D) is specified via the manifest attribute, Sealed. 10. Which of the following statements best describe the term synchronization as it applies to Java? A) A method for persisting objects. B) A method for managing the order that properties and data are accessed in order to maintain data integrity in a multi-threaded application. C) A method for maintaining database cursors in a given relationship. D) A method for restarting a thread in a multi-threaded application. Answers 1. A) Exclude Class, B) End of Line Characters, and, D) Smart Step Settings. C) Transform Trace Options, is an IDE option. 2. C) You can t undock the structure pane from the AppBrowser. None of the AppBrowser panes can be undocked. 3. B) jtextarea2.setenabled(false); 4. A) In the Inspector, set the enabled property for the menu item to False, B) Right-click on an existing menu item and select Disable, and C) Click on the Enable/Disable tool on the menu designer toolbar. 5. C) jpx file is a XML file, and D) A jpx file type is required in order to use CVS with the project. 6. False. Both introspection and reflection are employed to retrieve and evaluate a JavaBean s properties. 7. A) open, C) access, and E) navigation 8. B) StringBuffer class 9. A) specifies that all classes defined in that package file must originate from the same JAR, and D) is specified via the manifest attribute, Sealed. 10. B) A method for managing the order that properties and data are accessed in order to maintain data integrity in a multi-threaded application. Borland JBuilder Certification Study Guide. Copyright 2002 Borland Software Corporation. All Rights Reserved. 15

Borland Application Server Certification. Study Guide. Version 1.0 Copyright 2001 Borland Software Corporation. All Rights Reserved.

Borland Application Server Certification. Study Guide. Version 1.0 Copyright 2001 Borland Software Corporation. All Rights Reserved. Borland Application Server Certification Study Guide Version 1.0 Copyright 2001 Borland Software Corporation. All Rights Reserved. Introduction This study guide is designed to walk you through requisite

More information

Chapter 2 FEATURES AND FACILITIES. SYS-ED/ Computer Education Techniques, Inc.

Chapter 2 FEATURES AND FACILITIES. SYS-ED/ Computer Education Techniques, Inc. Chapter 2 FEATURES AND FACILITIES SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: JDeveloper features. Java in the database. Simplified database access. IDE: Integrated Development

More information

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format.

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format. J2EE Development Detail: Audience www.peaksolutions.com/ittraining Java developers, web page designers and other professionals that will be designing, developing and implementing web applications using

More information

JBuilder. JBuilder 6 features and benefits. Developer productivity Support for the latest Java standards

JBuilder. JBuilder 6 features and benefits. Developer productivity Support for the latest Java standards Developer productivity Support for the latest Java standards High-productivity development environment Advanced, state-of-the-art JBuilder AppBrowser IDE Develop Java applications with no proprietary code

More information

25. DECUS Symposium THE Application Development Environment for OpenVMS

25. DECUS Symposium THE Application Development Environment for OpenVMS NetBeans THE Application Development Environment for OpenVMS Sunil Kumaran, Thomas Siebold Agenda What is NetBeans some history Major Features / Demonstrations NetBeans on OpenVMS Questions 5/2/2002 DECUS

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

Contents Introduction 1

Contents Introduction 1 SELF-STUDY iii Introduction 1 Course Purpose... 1 Course Goals...1 Exercises... 2 Scenario-Based Learning... 3 Multimedia Overview... 3 Assessment... 3 Hardware and Software Requirements... 4 Chapter 1

More information

Distributed Multitiered Application

Distributed Multitiered Application Distributed Multitiered Application Java EE platform uses a distributed multitiered application model for enterprise applications. Logic is divided into components https://docs.oracle.com/javaee/7/tutorial/overview004.htm

More information

JBuilder. Getting Started Guide part II. Preface. Creating your Second Enterprise JavaBean. Container Managed Persistent Bean.

JBuilder. Getting Started Guide part II. Preface. Creating your Second Enterprise JavaBean. Container Managed Persistent Bean. Getting Started Guide part II Creating your Second Enterprise JavaBean Container Managed Persistent Bean by Gerard van der Pol and Michael Faisst, Borland Preface Introduction This document provides an

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

Introduction... xv SECTION 1: DEVELOPING DESKTOP APPLICATIONS USING JAVA Chapter 1: Getting Started with Java... 1

Introduction... xv SECTION 1: DEVELOPING DESKTOP APPLICATIONS USING JAVA Chapter 1: Getting Started with Java... 1 Introduction... xv SECTION 1: DEVELOPING DESKTOP APPLICATIONS USING JAVA Chapter 1: Getting Started with Java... 1 Introducing Object Oriented Programming... 2 Explaining OOP concepts... 2 Objects...3

More information

Java for Programmers Course (equivalent to SL 275) 36 Contact Hours

Java for Programmers Course (equivalent to SL 275) 36 Contact Hours Java for Programmers Course (equivalent to SL 275) 36 Contact Hours Course Overview This course teaches programmers the skills necessary to create Java programming system applications and satisfies the

More information

Outline. Introduction to Java. What Is Java? History. Java 2 Platform. Java 2 Platform Standard Edition. Introduction Java 2 Platform

Outline. Introduction to Java. What Is Java? History. Java 2 Platform. Java 2 Platform Standard Edition. Introduction Java 2 Platform Outline Introduction to Java Introduction Java 2 Platform CS 3300 Object-Oriented Concepts Introduction to Java 2 What Is Java? History Characteristics of Java History James Gosling at Sun Microsystems

More information

3. Course Outlines: Specific Objectives Contents Teaching Hours understand the basic concept of java programing. 1. Introduction to Java Language

3. Course Outlines: Specific Objectives Contents Teaching Hours understand the basic concept of java programing. 1. Introduction to Java Language Course Title: Java Programming Course No. : ICT. Ed Level: M.Ed. Semester: First Nature of course: Theoretical + Practical Credit Hour: 3 hours Teaching Hour: 75 hours(45+30) 1. Course Description This

More information

What s New in Borland JBuilder 8

What s New in Borland JBuilder 8 What s New in Borland JBuilder 8 The leading Java development solution A Borland White Paper By Borland Staff November, 2002 Contents What s new in JBuilder 8... 5 JDK 1.4.1... 5 Project management...

More information

Type of Classes Nested Classes Inner Classes Local and Anonymous Inner Classes

Type of Classes Nested Classes Inner Classes Local and Anonymous Inner Classes Java CORE JAVA Core Java Programing (Course Duration: 40 Hours) Introduction to Java What is Java? Why should we use Java? Java Platform Architecture Java Virtual Machine Java Runtime Environment A Simple

More information

Java Training For Six Weeks

Java Training For Six Weeks Java Training For Six Weeks Java is a set of several computer software and specifications developed by Sun Microsystems, later acquired by Oracle Corporation that provides a system for developing application

More information

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 GETTING STARTED SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: The IDE: Integrated Development Environment. MVC: Model-View-Controller Architecture. BC4J: Business Components

More information

[Course Overview] After completing this module you are ready to: Develop Desktop applications, Networking & Multi-threaded programs in java.

[Course Overview] After completing this module you are ready to: Develop Desktop applications, Networking & Multi-threaded programs in java. [Course Overview] The Core Java technologies and application programming interfaces (APIs) are the foundation of the Java Platform, Standard Edition (Java SE). They are used in all classes of Java programming,

More information

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP 2013 Empowering Innovation DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP contact@dninfotech.com www.dninfotech.com 1 JAVA 500: Core JAVA Java Programming Overview Applications Compiler Class Libraries

More information

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1 Umair Javed 2004 J2EE Based Distributed Application Architecture Overview Lecture - 2 Distributed Software Systems Development Why J2EE? Vision of J2EE An open standard Umbrella for anything Java-related

More information

SYLLABUS JAVA COURSE DETAILS. DURATION: 60 Hours. With Live Hands-on Sessions J P I N F O T E C H

SYLLABUS JAVA COURSE DETAILS. DURATION: 60 Hours. With Live Hands-on Sessions J P I N F O T E C H JAVA COURSE DETAILS DURATION: 60 Hours With Live Hands-on Sessions J P I N F O T E C H P U D U C H E R R Y O F F I C E : # 4 5, K a m a r a j S a l a i, T h a t t a n c h a v a d y, P u d u c h e r r y

More information

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 GETTING STARTED SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: WSAD. J2EE business topologies. Workbench. Project. Workbench components. Java development tools. Java projects

More information

NetBeans Tutorial. For Introduction to Java Programming By Y. Daniel Liang. This tutorial applies to NetBeans 6, 7, or a higher version.

NetBeans Tutorial. For Introduction to Java Programming By Y. Daniel Liang. This tutorial applies to NetBeans 6, 7, or a higher version. NetBeans Tutorial For Introduction to Java Programming By Y. Daniel Liang This tutorial applies to NetBeans 6, 7, or a higher version. This supplement covers the following topics: Getting Started with

More information

CERTIFICATION SUCCESS GUIDE ENTERPRISE ARCHITECT FOR JAVA 2 PLATFORM, ENTERPRISE EDITION (J2EE ) TECHNOLOGY

CERTIFICATION SUCCESS GUIDE ENTERPRISE ARCHITECT FOR JAVA 2 PLATFORM, ENTERPRISE EDITION (J2EE ) TECHNOLOGY SUN CERTIFICATION CERTIFICATION SUCCESS GUIDE ENTERPRISE ARCHITECT FOR JAVA 2 PLATFORM, ENTERPRISE EDITION (J2EE ) TECHNOLOGY TABLE OF CONTENTS Introduction..............................................

More information

5. In JAVA, is exception handling implicit or explicit or both. Explain with the help of example java programs. [16]

5. In JAVA, is exception handling implicit or explicit or both. Explain with the help of example java programs. [16] Code No: R05220402 Set No. 1 1. (a) java is freeform language. Comment (b) Describe in detail the steps involved in implementing a stand-alone program. (c) What are command line arguments? How are they

More information

Core Java SYLLABUS COVERAGE SYLLABUS IN DETAILS

Core Java SYLLABUS COVERAGE SYLLABUS IN DETAILS Core Java SYLLABUS COVERAGE Introduction. OOPS Package Exception Handling. Multithreading Applet, AWT, Event Handling Using NetBean, Ecllipse. Input Output Streams, Serialization Networking Collection

More information

Oracle 10g: Java Programming

Oracle 10g: Java Programming Oracle 10g: Java Programming Volume 1 Student Guide D17249GC12 Edition 1.2 July 2005 D19367 Author Kate Heap Technical Contributors and Reviewers Ken Cooper Brian Fry Jeff Gallus Glenn Maslen Gayathri

More information

Oracle Forms Developer 10g: Build Internet Applications

Oracle Forms Developer 10g: Build Internet Applications Oracle University Contact Us: +966 1 1 2739 894 Oracle Forms Developer 10g: Build Internet Applications Duration: 5 Days What you will learn Oracle Forms Developer 10g is used to build high performance

More information

JBuilder. Borland JBuilder 6 features. Developer productivity. Personal Professional Enterprise

JBuilder. Borland JBuilder 6 features. Developer productivity. Personal Professional Enterprise Developer productivity Support for the latest Java standards Build Java applications, applets, and JavaBeans with no proprietary code or markers True two-way visual IDE with Borland Two-Way-Tools Cross-platform

More information

JAVA & J2EE UNIT -1 INTRODUCTION

JAVA & J2EE UNIT -1 INTRODUCTION JAVA & J2EE UNIT -1 INTRODUCTION 1. List and explain the java buzzwords 2. Explain different access specifires in java,with example [6 marks] 3. Explain any 5 object oriented features supported by java,

More information

J2EE Technologies. Industrial Training

J2EE Technologies. Industrial Training COURSE SYLLABUS J2EE Technologies Industrial Training (4 MONTHS) PH : 0481 2411122, 09495112288 Marette Tower E-Mail : info@faithinfosys.com Near No. 1 Pvt. Bus Stand Vazhoor Road Changanacherry-01 www.faithinfosys.com

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Extending Web Applications with Business Logic: Introducing EJB Components...1 EJB Project type Wizards...2

More information

Advanced Java Programming

Advanced Java Programming Advanced Java Programming Length: 4 days Description: This course presents several advanced topics of the Java programming language, including Servlets, Object Serialization and Enterprise JavaBeans. In

More information

OracleAS 10g R3: Java Programming

OracleAS 10g R3: Java Programming OracleAS 10g R3: Java Programming Volume I Student Guide D18382GC20 Edition 2.0 April 2007 D50171 Authors Patrice Daux Kate Heap Technical Contributors and Reviewers Ken Cooper C Fuller Vasily Strelnikov

More information

Internet Application Developer

Internet Application Developer Internet Application Developer SUN-Java Programmer Certification Building a Web Presence with XHTML & XML 5 days or 12 evenings $2,199 CBIT 081 J A V A P R O G R A M M E R Fundamentals of Java and Object

More information

Deccansoft Software Services. J2EE Syllabus

Deccansoft Software Services. J2EE Syllabus Overview: Java is a language and J2EE is a platform which implements java language. J2EE standard for Java 2 Enterprise Edition. Core Java and advanced java are the standard editions of java whereas J2EE

More information

JAVA. Duration: 2 Months

JAVA. Duration: 2 Months JAVA Introduction to JAVA History of Java Working of Java Features of Java Download and install JDK JDK tools- javac, java, appletviewer Set path and how to run Java Program in Command Prompt JVM Byte

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session5 Focusing on the UI Speaker Speaker Title Page 1 1 Agenda Building the User Interface UI Development Page Flow A Focus on Faces Introducing Java Server Faces

More information

Educational Fusion. Implementing a Production Quality User Interface With JFC

Educational Fusion. Implementing a Production Quality User Interface With JFC Educational Fusion Implementing a Production Quality User Interface With JFC Kevin Kennedy Prof. Seth Teller 6.199 May 1999 Abstract Educational Fusion is a online algorithmic teaching program implemented

More information

Courses For Event Java Advanced Summer Training 2018

Courses For Event Java Advanced Summer Training 2018 Courses For Event Java Advanced Summer Training 2018 Java Fundamentals Oracle Java SE 8 Advanced Java Training Java Advanced Expert Edition Topics For Java Fundamentals Variables Data Types Operators Part

More information

Appendix A - Glossary(of OO software term s)

Appendix A - Glossary(of OO software term s) Appendix A - Glossary(of OO software term s) Abstract Class A class that does not supply an implementation for its entire interface, and so consequently, cannot be instantiated. ActiveX Microsoft s component

More information

Introduction. Enterprise Java Instructor: Please introduce yourself Name Experience in Java Enterprise Edition Goals you hope to achieve

Introduction. Enterprise Java Instructor: Please introduce yourself Name Experience in Java Enterprise Edition Goals you hope to achieve Enterprise Java Introduction Enterprise Java Instructor: Please introduce yourself Name Experience in Java Enterprise Edition Goals you hope to achieve Course Description This course focuses on developing

More information

COURSE SYLLABUS. Complete JAVA. Industrial Training (3 MONTHS) PH : , Vazhoor Road Changanacherry-01.

COURSE SYLLABUS. Complete JAVA. Industrial Training (3 MONTHS) PH : , Vazhoor Road Changanacherry-01. COURSE SYLLABUS Complete JAVA Industrial Training (3 MONTHS) PH : 0481 2411122, 09495112288 E-Mail : info@faithinfosys.com www.faithinfosys.com Marette Tower Near No. 1 Pvt. Bus Stand Vazhoor Road Changanacherry-01

More information

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p.

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p. Acknowledgments p. xvi Introduction p. xvii Overview p. 1 Overview p. 3 The Motivation for Enterprise JavaBeans p. 4 Component Architectures p. 7 Divide and Conquer to the Extreme with Reusable Services

More information

Rational Application Developer 7 Bootcamp

Rational Application Developer 7 Bootcamp Rational Application Developer 7 Bootcamp Length: 1 week Description: This course is an intensive weeklong course on developing Java and J2EE applications using Rational Application Developer. It covers

More information

CO Java EE 7: Back-End Server Application Development

CO Java EE 7: Back-End Server Application Development CO-85116 Java EE 7: Back-End Server Application Development Summary Duration 5 Days Audience Application Developers, Developers, J2EE Developers, Java Developers and System Integrators Level Professional

More information

Eclipse Tutorial. For Introduction to Java Programming By Y. Daniel Liang

Eclipse Tutorial. For Introduction to Java Programming By Y. Daniel Liang Eclipse Tutorial For Introduction to Java Programming By Y. Daniel Liang This supplement covers the following topics: Getting Started with Eclipse Choosing a Perspective Creating a Project Creating a Java

More information

Borland Optimizeit Enterprise Suite 6

Borland Optimizeit Enterprise Suite 6 Borland Optimizeit Enterprise Suite 6 Feature Matrix The table below shows which Optimizeit product components are available in Borland Optimizeit Enterprise Suite and which are available in Borland Optimizeit

More information

Migrating from IBM VisualAge to Borland 6 JBuilder

Migrating from IBM VisualAge to Borland 6 JBuilder Migrating from IBM VisualAge to Borland 6 JBuilder by Hartwig Gunzer, Sales Engineer, Borland Table of Contents Preface 1 General differences 2 Migrating GUI applications 2 Migrating applets 8 Migrating

More information

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC ABSTRACT JDMS harnesses the power of a SAS using Java technologies. JDMS is a Java

More information

SELF-STUDY. Glossary

SELF-STUDY. Glossary SELF-STUDY 231 Glossary HTML (Hyper Text Markup Language - the language used to code web pages) tags used to embed an applet. abstract A class or method that is incompletely defined,

More information

Part I: Fundamentals of Programming

Part I: Fundamentals of Programming Part I: Fundamentals of Programming By now you have heard a lot about Java and are anxious to start writing Java programs. The first part of the book is a stepping stone that will prepare you to embark

More information

What we need. Agenda. What s J2EE. Challenges of Enterprise Application Development

What we need. Agenda. What s J2EE. Challenges of Enterprise Application Development Agenda.NET versus J2EE Felicia cheng Jarred zheng Jonathan Card Peng Li iao he Background Introduction J2EE Structure.NET Structure J2EE vs..net Conclusions Today s Enterprise Environment Challenges of

More information

PSD1B Advance Java Programming Unit : I-V. PSD1B- Advance Java Programming

PSD1B Advance Java Programming Unit : I-V. PSD1B- Advance Java Programming PSD1B Advance Java Programming Unit : I-V PSD1B- Advance Java Programming 1 UNIT I - SYLLABUS Servlets Client Vs Server Types of Servlets Life Cycle of Servlets Architecture Session Tracking Cookies JDBC

More information

Forte for Java (Community Edition) QuickStart Guide

Forte for Java (Community Edition) QuickStart Guide Forte for Java (Community Edition) QuickStart Guide Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303 USA 650 960-1300 fax 650 969-9131 Part No.: 806-4569-10 Revision 01, February 2000 Forte

More information

Oracle Fusion Middleware 11g: Build Applications with ADF I

Oracle Fusion Middleware 11g: Build Applications with ADF I Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Fusion Middleware 11g: Build Applications with ADF I Duration: 5 Days What you will learn Java EE is a standard, robust,

More information

Workbench User's Guide

Workbench User's Guide IBM Initiate Workbench User's Guide Version9Release7 SC19-3167-06 IBM Initiate Workbench User's Guide Version9Release7 SC19-3167-06 Note Before using this information and the product that it supports,

More information

MCSA Universal Windows Platform. A Success Guide to Prepare- Programming in C# edusum.com

MCSA Universal Windows Platform. A Success Guide to Prepare- Programming in C# edusum.com 70-483 MCSA Universal Windows Platform A Success Guide to Prepare- Programming in C# edusum.com Table of Contents Introduction to 70-483 Exam on Programming in C#... 2 Microsoft 70-483 Certification Details:...

More information

ESPRIT Project N Work Package H User Access. Survey

ESPRIT Project N Work Package H User Access. Survey ESPRIT Project N. 25 338 Work Package H User Access Survey ID: User Access V. 1.0 Date: 28.11.97 Author(s): A. Sinderman/ E. Triep, Status: Fast e.v. Reviewer(s): Distribution: Change History Document

More information

LTBP INDUSTRIAL TRAINING INSTITUTE

LTBP INDUSTRIAL TRAINING INSTITUTE Java SE Introduction to Java JDK JRE Discussion of Java features and OOPS Concepts Installation of Netbeans IDE Datatypes primitive data types non-primitive data types Variable declaration Operators Control

More information

Chapter 6 Enterprise Java Beans

Chapter 6 Enterprise Java Beans Chapter 6 Enterprise Java Beans Overview of the EJB Architecture and J2EE platform The new specification of Java EJB 2.1 was released by Sun Microsystems Inc. in 2002. The EJB technology is widely used

More information

Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation

Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation By the Sun Educational Services Java Technology Team January, 2001 Copyright

More information

1 OBJECT-ORIENTED PROGRAMMING 1

1 OBJECT-ORIENTED PROGRAMMING 1 PREFACE xvii 1 OBJECT-ORIENTED PROGRAMMING 1 1.1 Object-Oriented and Procedural Programming 2 Top-Down Design and Procedural Programming, 3 Problems with Top-Down Design, 3 Classes and Objects, 4 Fields

More information

Oracle 10g: Build J2EE Applications

Oracle 10g: Build J2EE Applications Oracle University Contact Us: (09) 5494 1551 Oracle 10g: Build J2EE Applications Duration: 5 Days What you will learn Leading companies are tackling the complexity of their application and IT environments

More information

Big Java Late Objects

Big Java Late Objects Big Java Late Objects Horstmann, Cay S. ISBN-13: 9781118087886 Table of Contents 1. Introduction 1.1 Computer Programs 1.2 The Anatomy of a Computer 1.3 The Java Programming Language 1.4 Becoming Familiar

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR ADVANCED JAVA PROGRAMMING CIS1870 3 Credit Hours Student Level: This course is open to students on the college level in either freshman

More information

Spring & Hibernate. Knowledge of database. And basic Knowledge of web application development. Module 1: Spring Basics

Spring & Hibernate. Knowledge of database. And basic Knowledge of web application development. Module 1: Spring Basics Spring & Hibernate Overview: The spring framework is an application framework that provides a lightweight container that supports the creation of simple-to-complex components in a non-invasive fashion.

More information

Chapter 1 Introduction to Computers, Programs, and Java. What is a Computer? A Bit of History

Chapter 1 Introduction to Computers, Programs, and Java. What is a Computer? A Bit of History Chapter 1 Introduction to Computers, Programs, and Java CS170 Introduction to Computer Science 1 What is a Computer? A machine that manipulates data according to a list of instructions Consists of hardware

More information

HYPERION SYSTEM 9 BI+ GETTING STARTED GUIDE APPLICATION BUILDER J2EE RELEASE 9.2

HYPERION SYSTEM 9 BI+ GETTING STARTED GUIDE APPLICATION BUILDER J2EE RELEASE 9.2 HYPERION SYSTEM 9 BI+ APPLICATION BUILDER J2EE RELEASE 9.2 GETTING STARTED GUIDE Copyright 1998-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion H logo, and Hyperion s product

More information

Enterprise Architect. User Guide Series. Profiling. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Profiling. Author: Sparx Systems. Date: 10/05/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Profiling Author: Sparx Systems Date: 10/05/2018 Version: 1.0 CREATED WITH Table of Contents Profiling 3 System Requirements 8 Getting Started 9 Call Graph 11 Stack

More information

Enterprise Architect. User Guide Series. Profiling

Enterprise Architect. User Guide Series. Profiling Enterprise Architect User Guide Series Profiling Investigating application performance? The Sparx Systems Enterprise Architect Profiler finds the actions and their functions that are consuming the application,

More information

Appendix C WORKSHOP. SYS-ED/ Computer Education Techniques, Inc.

Appendix C WORKSHOP. SYS-ED/ Computer Education Techniques, Inc. Appendix C WORKSHOP SYS-ED/ Computer Education Techniques, Inc. 1 Preliminary Assessment Specify key components of WSAD. Questions 1. tools are used for reorganizing Java classes. 2. tools are used to

More information

JBuilder EJB. Development Using JBuilder 4 and Inprise Application Server 4.1. Audience. A Step-by-step Tutorial.

JBuilder EJB. Development Using JBuilder 4 and Inprise Application Server 4.1. Audience. A Step-by-step Tutorial. EJB Development Using JBuilder 4 and Inprise Application Server 4.1 A Step-by-step Tutorial by Todd Spurling, Systems Engineer, Inprise Audience Evaluators or new developers to EJB using JBuilder 4 and

More information

3C05 - Advanced Software Engineering Thursday, April 29, 2004

3C05 - Advanced Software Engineering Thursday, April 29, 2004 Distributed Software Architecture Using Middleware Avtar Raikmo Overview Middleware What is middleware? Why do we need middleware? Types of middleware Distributed Software Architecture Business Object

More information

Java Application Development

Java Application Development A Absolute Size and Position - Specifying... 10:18 Abstract Class... 5:15 Accessor Methods...4:3-4:4 Adding Borders Around Components... 10:7 Adding Components to Containers... 10:6 Adding a Non-Editable

More information

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Oracle University Contact Us: 00 9714 390 9050 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Duration: 5 Days What you will learn This course is also suitable for customers using Forms

More information

Core Java Syllabus. Pre-requisite / Target Audience: C language skills (Good to Have)

Core Java Syllabus. Pre-requisite / Target Audience: C language skills (Good to Have) Overview: Java programming language is developed by Sun Microsystems. Java is object oriented, platform independent, simple, secure, architectural neutral, portable, robust, multi-threaded, high performance,

More information

Designing a Distributed System

Designing a Distributed System Introduction Building distributed IT applications involves assembling distributed components and coordinating their behavior to achieve the desired functionality. Specifying, designing, building, and deploying

More information

Oracle Fusion Middleware 11g: Build Applications with ADF I

Oracle Fusion Middleware 11g: Build Applications with ADF I Oracle University Contact Us: +966 1 1 2739 894 Oracle Fusion Middleware 11g: Build Applications with ADF I Duration: 5 Days What you will learn This course is aimed at developers who want to build Java

More information

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java COURSE DETAILS: CORE AND ADVANCE JAVA Core Java 1. Object Oriented Concept Object Oriented Programming & its Concepts Classes and Objects Aggregation and Composition Static and Dynamic Binding Abstract

More information

Swami Ramanand Teerth Marathwada University, Nanded

Swami Ramanand Teerth Marathwada University, Nanded Swami Ramanand Teerth Marathwada University, Nanded B.Sc Third Year Semester Pattern Information Technology (Optional) ( With Effect from 2011-12 ) B.Sc. III Year. Information Technology (Optional) Paper

More information

CO Java SE 8: Fundamentals

CO Java SE 8: Fundamentals CO-83527 Java SE 8: Fundamentals Summary Duration 5 Days Audience Application Developer, Developer, Project Manager, Systems Administrator, Technical Administrator, Technical Consultant and Web Administrator

More information

B2.52-R3: INTRODUCTION TO OBJECT ORIENTATED PROGRAMMING THROUGH JAVA

B2.52-R3: INTRODUCTION TO OBJECT ORIENTATED PROGRAMMING THROUGH JAVA B2.52-R3: INTRODUCTION TO OBJECT ORIENTATED PROGRAMMING THROUGH JAVA NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE

More information

Java Programming Course Overview. Duration: 35 hours. Price: $900

Java Programming Course Overview. Duration: 35 hours. Price: $900 978.256.9077 admissions@brightstarinstitute.com Java Programming Duration: 35 hours Price: $900 Prerequisites: Basic programming skills in a structured language. Knowledge and experience with Object- Oriented

More information

Topics. From UI prototype... About user interfaces. ... via design to implementation. Pearson Education 2005 Chapter 7 (Maciaszek - RASD 2/e) 6

Topics. From UI prototype... About user interfaces. ... via design to implementation. Pearson Education 2005 Chapter 7 (Maciaszek - RASD 2/e) 6 MACIASZEK, L.A. (2005): Requirements Analysis and System Design, 2 nd ed. Addison Wesley, Harlow England, 504p. ISBN 0 321 20464 6 Chapter 7 User Interface Design Topics From UI prototype to implementation

More information

JAVA+ANDROID CURRICULUM 6 WEEKS. INTRODUCTION TO JAVA Understanding Requirement: Why Java Why Java is important to the Internet JAVA on LINUX Platform

JAVA+ANDROID CURRICULUM 6 WEEKS. INTRODUCTION TO JAVA Understanding Requirement: Why Java Why Java is important to the Internet JAVA on LINUX Platform JAVA+ANDROID CURRICULUM 6 WEEKS INTRODUCTION TO JAVA Understanding Requirement: Why Java Why Java is important to the Internet JAVA on LINUX Platform INTRODUCTION TO JAVA VIRTUAL MACHINE Java Virtual Machine

More information

CHAPTER. Introduction to the Oracle Application Development Framework

CHAPTER. Introduction to the Oracle Application Development Framework CHAPTER 4 Introduction to the Oracle Application Development Framework 104 Oracle JDeveloper 10g Handbook Your scheme must be the framework of the universe; all other schemes will soon be ruins. Henry

More information

Administration Manual

Administration Manual Administration Manual SAP J2EE Engine 6.20 Contents About This Manual... 10 Target Audience and Prerequisites... 10 Structure... 10 Documentation Conventions... 11 Further Reading... 11 Administration

More information

Pearson Education 2007 Chapter 7 (RASD 3/e)

Pearson Education 2007 Chapter 7 (RASD 3/e) Chapter 7 (RASD 3/e) MACIASZEK, L.A. (2007): Requirements Analysis and System Design, 3 rd ed. Addison Wesley, Harlow England ISBN 978-0-321-44036-5 Chapter 7 Graphical User Interface Design Pearson Education

More information

Exam Questions 1Z0-895

Exam Questions 1Z0-895 Exam Questions 1Z0-895 Java Platform, Enterprise Edition 6 Enterprise JavaBeans Developer Certified Expert Exam https://www.2passeasy.com/dumps/1z0-895/ QUESTION NO: 1 A developer needs to deliver a large-scale

More information

Pearson Education 2005 Chapter 7 (Maciaszek - RASD 2/e) 2

Pearson Education 2005 Chapter 7 (Maciaszek - RASD 2/e) 2 MACIASZEK, L.A. (2005): Requirements Analysis and System Design, 2 nd ed. Addison Wesley, Harlow England, 504p. ISBN 0 321 20464 6 Chapter 7 User Interface Design Pearson Education Limited 2005 Topics

More information

Application Servers in E-Commerce Applications

Application Servers in E-Commerce Applications Application Servers in E-Commerce Applications Péter Mileff 1, Károly Nehéz 2 1 PhD student, 2 PhD, Department of Information Engineering, University of Miskolc Abstract Nowadays there is a growing demand

More information

BEAWebLogic. Platform. Introducing WebLogic Platform. Version 8.1 Document Date: July 2003 Part Number:

BEAWebLogic. Platform. Introducing WebLogic Platform. Version 8.1 Document Date: July 2003 Part Number: BEAWebLogic Platform Introducing WebLogic Platform Version 8.1 Document Date: July 2003 Part Number: 885-001002-003 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend

More information

Core JAVA Training Syllabus FEE: RS. 8000/-

Core JAVA Training Syllabus FEE: RS. 8000/- About JAVA Java is a high-level programming language, developed by James Gosling at Sun Microsystems as a core component of the Java platform. Java follows the "write once, run anywhere" concept, as it

More information

Java: The Complete Reference PDF

Java: The Complete Reference PDF Java: The Complete Reference PDF In Java: The Complete Reference, Eighth Edition, bestselling programming author Herb Schildt shows you everything you need to develop, compile, debug, and run Java programs.

More information

Java- EE Web Application Development with Enterprise JavaBeans and Web Services

Java- EE Web Application Development with Enterprise JavaBeans and Web Services Java- EE Web Application Development with Enterprise JavaBeans and Web Services Duration:60 HOURS Price: INR 8000 SAVE NOW! INR 7000 until December 1, 2011 Students Will Learn How to write Session, Message-Driven

More information

E Oracle 10g Java Bootcamp I v1

E Oracle 10g Java Bootcamp I v1 E Oracle 10g Java Bootcamp I v1 Student Guide Volume 1 D22059GC10 Edition 1.0 October 2005 D22281 Authors Jeff Gallus Glenn Stokol Editor Gayathri Rajagopal Technical Contributors and Reviewers Kenneth

More information

Java SE7 Fundamentals

Java SE7 Fundamentals Java SE7 Fundamentals Introducing the Java Technology Relating Java with other languages Showing how to download, install, and configure the Java environment on a Windows system. Describing the various

More information

OpenOffice.org as a platform for developers

OpenOffice.org as a platform for developers OOoCon 2004 - Berlin OpenOffice.org as a platform for developers Mathias.Bauer@sun.com Mathias Bauer - OpenOffice.org Application Framework - Slide 1 Agenda Speaker introductions Features for development

More information