Mobile Information Device Profile - Java Programs in the Phone
|
|
|
- Leon Matthews
- 9 years ago
- Views:
Transcription
1 Mobile Information Device Profile - Java Programs in the Phone Kari Systä Nokia Research Center 1 NOKIA 2000 FILENAM s.ppt/date KSy Content Background Java for devices why what are the issues development of the technology Java for phones MIDP 2 NOKIA 2000 FILENAM s.ppt/date KSy
2 Background The boundary between a computer and consumer device is fading, computers are for programs and applications developed by third parties. 3 NOKIA 2000 FILENAM s.ppt/date KSy If that happens A huge market for software and software-based services is developing phones set-top boxes and other types of digital-tv receivers The "information device" of individuals is a mobile phone Homes and families are using information services through TV If everyday services are going to Internet, is the current PC really the optimum device for ordinary families. 4 NOKIA 2000 FILENAM s.ppt/date KSy
3 OK, there will application market for devices Should it be possible to install or download new applications after the devices has been sent out from the factory YES Can and should we assume standardized CPU architectures NO, so no binary standards Should we invite viruses NO, built in security is essential Should we use something existing, instead of inventing a new language and platform YES How many programmers are familiar with Lisp, Wink, Telescript, OpenTV Java sounds like a reasonable option 5 NOKIA 2000 FILENAM s.ppt/date KSy 6 NOKIA 2000 FILENAM s.ppt/date KSy Special features of "devices" HW constraints CPU, memory, power consumption optimize and implement lower layers in native optimize, consider what is really needed interact with power management, do not spend too much CPU and memory Should not be booted several times a day the platform has to be robust Should not need maintenance & updates weekly the platform has to be carefully designed and then frozen the platform has to be robust Different UI concepts than Windows standardize on product category level
4 Challenges for portability The real challenge 7 NOKIA 2000 FILENAM s.ppt/date KSy Resource usage of Java Speed Slower: YES Too slow: SELDOM User-noticeable slowness: downloading Memory usage The platform classes are big full JDK 1.2 is about 17MBytes only 20 % is bytecode Several threads several stacks - what are the bounds? Division of ROM and RAM need to be considered in devices 8 NOKIA 2000 FILENAM s.ppt/date KSy
5 The first attempt to create Java profiles Enterprise Java Personal Java Embedded Java JavaCard 9 NOKIA 2000 FILENAM s.ppt/date KSy JavaPhone Additional API to be used with Personal Java 10 NOKIA 2000 FILENAMs.PPT/DATE /KSy
6 JavaPhone - content Datagram API in GSM: SMS Access to PIM functions address book calendar user profile Access to power management allow application to listen and react Telephony API 11 NOKIA 2000 FILENAMs.PPT/DATE /KSy JavaPhone - motivation Mobile Phones will not be just phones in future - rather "Wireless Information Devices" communicators smart phones An application platform is needed, that provides portability over several models and manufactures, easy easily accessed by software developers, provides safety and robustness, fit to special needs of Wireless Information Devices 12 NOKIA 2000 FILENAMs.PPT/DATE /KSy
7 However, JavaPhone is not ready for mass market Requires more than 2MBytes of ROM Assumes UI metaphor close to desktops New profiles that are fit-for purpose for small devices CLDC - Connected, Limited Device Configuration MIDP - Mobile Information Device Profile JavaPhone with (pjava => CDC) is viable for bigger devices 13 NOKIA 2000 FILENAMs.PPT/DATE /KSy MIDP 14 NOKIA 2000 FILENAMs.PPT/DATE /KSy
8 MIDP Expert Group (MIDPEG) AOL DDI Ericsson Espial Group Fujitsu Hitachi J-Phone Tokyo Co. Matsushita Mitsubishi Motorola NEC Nokia NTT DoCoMo Palm RIM Samsung Sharp Siemens Sony Sun Symbian Telecordia 15 NOKIA 2000 FILENAMs.PPT/DATE /KSy MIDP goals Create a common application development environment for twoway communication devices such as cellular phones. Simplicity, rather than completeness is main goal. Design to MID devices rather than aim at compatibility to Java2SE 16 NOKIA 2000 FILENAMs.PPT/DATE /KSy
9 MIDP: Goal Primary goals: Size: must fit in small footprint (128K ROM) Efficiency: must run on low-end microprocessors must run in limited heap size (32 128K RAM) minimal creation of garbage Time to market 17 NOKIA 2000 FILENAMs.PPT/DATE /KSy MIDP: Scope Items not in MIDP scope: How an application actually gets on the device The end-to-end security model Features specific to certain network System- or OEM-specific application needs Any particular implementation 18 NOKIA 2000 FILENAMs.PPT/DATE /KSy
10 MIDP - main components Important parts of java.lang, java.util mainly as defined by CLDC timers simple API for persistent storage application of generic connection framework user interface 19 NOKIA 2000 FILENAMs.PPT/DATE /KSy MIDP application framework 20 NOKIA 2000 FILENAMs.PPT/DATE /KSy
11 MIDlet (MIDP Application) inherits ideas from XLET Well behaved Lives within resource constraints Runs and terminates when requested MIDlet Lifecycle Start acquire resources and start Pause release resources and become quiescent Destroy release all resources, destroy threads and end all activity No main().. exit()... Runtime.exit() and System.exit() will throw SecurityException 21 NOKIA 2000 FILENAMs.PPT/DATE /KSy MID Application Suite Packaging (a Jar file) Class files of the MIDlet(s) Resource files Manifest with application properties Application Descriptor Configuration properties Pre-download properties Size, version, storage requirements 22 NOKIA 2000 FILENAMs.PPT/DATE /KSy
12 MIDlet Runtime Environment Execution Environment Contents of the Jar file (MIDlet) MIDP classes CLDC classes VM for the Java platform ( Java VM ) Application Management Software 23 NOKIA 2000 FILENAMs.PPT/DATE /KSy Java Application Manager Specification recognizes that devices networks are different Many issues are left unspecified and up to the implementation of JAM: Device specific mechanisms and policies Install, removal of suite Invoke individual MIDlet(s) Suites are isolated from each other MIDlets can share within a suite (jar file) For example, loading via wireless network from web server. 24 NOKIA 2000 FILENAMs.PPT/DATE /KSy
13 Application programmer should know that Some implementations allow concurrently active MIDlets - some don't An application may loose: display at any time to native apps, other MIDlet, incoming phone call CPU at any time get paused Application manager asks MIDlet to release resources, if it does not, it may be killed MIDlet may ask display (foreground background) paused, active but JAM dictates 25 NOKIA 2000 FILENAMs.PPT/DATE /KSy 26 NOKIA 2000 FILENAMs.PPT/DATE /KSy A skeleton of a MIDlet public class MyApp extends MIDlet { MyApp () { // good place for one-time initializations } startapp() { // prepare for execution, // take the released resources // this may be called several times } pauseapp() { // do your best to free resources } destroyapp() { // save state to persistent storage etc. }
14 Persistent storage 27 NOKIA 2000 FILENAMs.PPT/DATE /KSy Persistent Storage Lightweight record oriented database (RMS) Device independent API Unique record Id for each record within a store Records are arrays of bytes Shared within MIDlet suite Atomic update for single records Support for enumeration, sorting and filtering Platform responsible for: Integrity of data across reboots, battery changes, etc. Storage in flash or other device memory 28 NOKIA 2000 FILENAMs.PPT/DATE /KSy
15 Record Store RMS Methods openrecordstore, closerecordstore, listrecordstore, deleterecordstore, getrecordsize, getnumrecords Record Data addrecord, deleterecord, getrecord, setrecord, getrecordsize Record Selection RecordEnumeration, RecordFilter, RecordCompare 29 NOKIA 2000 FILENAMs.PPT/DATE /KSy Networking with Generic Connection 30 NOKIA 2000 FILENAMs.PPT/DATE /KSy
16 Networking Client - Server HTTP following as per RFC 2616 Usually connects to web servers Underlying protocol may be IP or non IP, but application does not need to know the difference Can be supported across range of devices and wireless networks Gateway provides transport to wired network 31 NOKIA 2000 FILENAMs.PPT/DATE /KSy Networking Methods Extends CLDC Generic Connection Framework HttpConnection get/setrequestproperty get/setrequestmethod getresponsecode, getresponsemessage getheaderfield Supports integers, dates, and strings Parsed URL components geturl, gethost, getport, getfile, getquery, getref 32 NOKIA 2000 FILENAMs.PPT/DATE /KSy
17 And example try { StreamConnection c = (StreamConnection)Connector.open( theurl, Connector.READ_WRITE); InputStream is = c.openinputstream(); DataInputStream dis = new DataInputStream(is); status = dis.readint(); } catch NOKIA 2000 FILENAMs.PPT/DATE /KSy TIMERS 34 NOKIA 2000 FILENAMs.PPT/DATE /KSy
18 35 NOKIA 2000 FILENAMs.PPT/DATE /KSy Timer classes Applications can delay or schedule activities for a later time with Timer and TimerTask classes, including functions for: one-time execution repeated execution at regular intervals Timer handles queuing and delivery public void schedule (TimerTask task, Date time) abstract class TimerTask implements Runnable public void run() { if (System.currentTimeMillis() - scheduledexecutiontime() >= MAX_TARDINESS) return; // Too late; skip. // Perform the task } User interface 36 NOKIA 2000 FILENAMs.PPT/DATE /KSy
19 UI: Ergonomic foundations Communicators PDA's Phones 37 NOKIA 2000 FILENAMs.PPT/DATE /KSy Design principles Usable in all devices Majority of wireless devices are one-hand operated Keep target devices in mind Small screen (tens of pixels x tens of pixels) Not all devices have a pointing device Think of end users: Consumer products - not computers Unified user interface MIDP applications should behave consistently with resident functionality 38 NOKIA 2000 FILENAMs.PPT/DATE /KSy
20 Two layers High-level API for high portability Applications should be runnable in all devices Applications should be usable in all devices No direct access to device features Colors, screen sizes, input devices Low-level API for applications like games Drawing primitives Key events Developers may compromise portability for better game-experience 39 NOKIA 2000 FILENAMs.PPT/DATE /KSy Screen-based design Applications should be based in simple screens A screen should contain minimum amount of information Usually only one "thing" Simple interaction No complex traversing, scrolling and selection Some screens are actually widgets (TextBox, List) 40 NOKIA 2000 FILENAMs.PPT/DATE /KSy
21 The class hierarchy (important classes only) Displayable 0-n Command Canvas Screen Choice TextBox ChoiceGroup List Alert Form 1-n Item DateField TextField Gauge ImageItem TextItem 41 NOKIA 2000 FILENAMs.PPT/DATE /KSy Input handling Abstract commands in the high-level API Instead of direct access to soft button (different devices may have different number of soft buttons) Implementation maps the commands to soft buttons or menu items Application can provide semantic hints (like back) Key events in the low-level API 42 NOKIA 2000 FILENAMs.PPT/DATE /KSy
22 Commands - example Consider commands: new Command("Buy", Command.SCREEN); new Command("Info", Command.SCREEN); new Command("Back", Command.BACK); Ford Opel BMW Options Back Pressing "options" opens a menu Buy Info Back 43 NOKIA 2000 FILENAMs.PPT/DATE /KSy in the case of three soft buttons new Command( Buy", Command.SCREEN); new Command("Info", Command.SCREEN); new Command("Back", Command.BACK); Ford Opel BMW Buy Info Back 44 NOKIA 2000 FILENAMs.PPT/DATE /KSy
23 Low-level events Keys KEY_NUM0, KEY_NUM1, KEY_NUM2, KEY_NUM3, KEY_NUM4, KEY_NUM5, KEY_NUM6, KEY_NUM7, KEY_NUM8, KEY_NUM9, KEY_STAR, KEY_POUND Devices may notify applications about other keys as well, but applications relying on those are not portable Abstract game events Actions that the device can map either to 4-way scrolling keys or to numeric keys UP, DOWN, RIGHT, LEFT, FIRE, GAME_A, GAME_B, GAME_C, GAME_D 45 NOKIA 2000 FILENAMs.PPT/DATE /KSy Possible ways to map game actions 46 NOKIA 2000 FILENAMs.PPT/DATE /KSy
24 Example usage class TetrisCanvas extends Canvas { int leftkey, rightkey, downkey, rotatekey; void init (){ leftkey = getkeycode(left); rightkey = getkeycode(right); downkey = getkeycode(down); rotatekey = getkeycode(fire); } public void keypressed(int keycode) { if (keycode == leftkey) { moveblockleft(); } else if (keycode = rightkey) {... } } 47 NOKIA 2000 FILENAMs.PPT/DATE /KSy Repainting scheme in low-level API Screens are repainted automatically, but for Canvas a user-defined method paint() is called paint() may have a clipping region set The application can request repainting by calling repaint(). Actual painting is done asynchronously and several repaint requests may be combined. Application may synchronize to repainting by calling servicerepaints() or callserially(). 48 NOKIA 2000 FILENAMs.PPT/DATE /KSy
25 Examples of repaint-handling // move coordinates of box x1 = box.x; box.x = x2; y1 = box.y; box.y = y2; // ensure old region repainted (with background) canvas.repaint(x1,y1, wid, ht); // make new region repainted canvas.repaint(x2,y2, wid, ht); // force painting // (note: application must not hold locks) canvas.servicerepaints(); // application can now assume that screen // is updated 49 NOKIA 2000 FILENAMs.PPT/DATE /KSy Synchronization with callserially class Animation extends Canvas implements Callable { // paint the current frame void paint(graphics g) {... } void startanimation() { // set up initial frame repaint(); callserially(this); } // called after previous repaint is finished void call() { if (/* there are more frames */){ // update to the next frame repaint(); callserially(this); } } } 50 NOKIA 2000 FILENAMs.PPT/DATE /KSy
26 51 NOKIA 2000 FILENAMs.PPT/DATE /KSy
Developing Wireless Applications using Java Technology. Computing Is Ubiquitous
Developing Wireless Applications using Java Technology Bill Day [email protected] www.billday.com Technology Evangelist Sun Microsystems Computing Is Ubiquitous Mainframe era: one computer, many people
Mobile application development J2ME U N I T I I
Mobile application development J2ME U N I T I I Overview J2Me Layered Architecture Small Computing Device requirements Run Time Environment Java Application Descriptor File Java Archive File MIDlet Programming
Introduction to Mobile Phone. Programming in Java Me
Introduction to Mobile Phone Programming in Java Me (prepared for CS/ECE 707, UW-Madison) Author: Leszek Wiland and Suman Banerjee 1 Content 1. Introduction 2. Setting up programming environment 3. Hello
Java Platform, Micro Edition (Java ME) Mokoena F.R. The 7046 Team
Java Platform, Micro Edition (Java ME) Mokoena F.R The 7046 Team 1. Introduction Java Platform, Micro Edition (Java ME) technology is one of the popular mobile application runtime. It provides developers
Development of Java ME
Y39PDA Development of Java ME application České vysoké učení technické v Praze Fakulta Elektrotechnická Content What is Java ME Low Level a High Level API What is JSR LBS Java ME app. life-cycle 2/29 Is
Nokia 9210i/9290 Communicators and PersonalJava TM Application Development
Nokia 9210i/9290 Communicators and Personal TM Application Development 05-03-2002 Nokia 9210i/9290 Communicators and PersonalTM Application Development Table of contents 1. DIFFERENT JAVA TECHNOLOGIES...
Tutorial: Development of Interactive Applications for Mobile Devices
Tutorial: Development of Interactive Applications for Mobile Devices 7th International Conference on Human Computer Interaction with Mobile Devices and Services (Mobile HCI 2005) (Media Informatics Group,
MIDlet development with J2ME and MIDP
MIDlet development with J2ME and MIDP ibm.com/developerworks Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Introduction...
Mobile Operating Systems. Week I
Mobile Operating Systems Week I Overview Introduction Mobile Operating System Structure Mobile Operating System Platforms Java ME Platform Palm OS Symbian OS Linux OS Windows Mobile OS BlackBerry OS iphone
Mobile Software Application Development. Tutorial. Caesar Ogole. April 2006
Mobile Software Application Development Tutorial By Caesar Ogole April 2006 About the Tutorial: In this tutorial, you will learn how to build a cross-platform mobile software application that runs on the
Mobile Application Development Android
Mobile Application Development Android MTAT.03.262 Satish Srirama [email protected] Goal Give you an idea of how to start developing Android applications Introduce major Android application concepts
Project: E290 - MOBILE COMMERCE APPLICATION DEVELOPMENT
Undergraduate Research Opportunity Programme (UROP) Project: E290 - MOBILE COMMERCE APPLICATION DEVELOPMENT Supervisor Professor Kong Pe Hin Hinny Nanyang Technological University Email: [email protected]
Zing Vision. Answering your toughest production Java performance questions
Zing Vision Answering your toughest production Java performance questions Outline What is Zing Vision? Where does Zing Vision fit in your Java environment? Key features How it works Using ZVRobot Q & A
DESIGNING SHIFT CALENDAR FOR MOBILE PHONE
Bachelor's thesis Degree program Information technology 2010 Maamar zeddek DESIGNING SHIFT CALENDAR FOR MOBILE PHONE BACHELOR S THESIS ABSTRACT TURKU UNIVERSITY OF APPLIED SCIENCES Degree programme Infomation
2 Selecting Operating System - Symbian OS
1 Introduction One of the very first steps of this project, is to choose the device on which we are going to develop and test the application, that will enable interaction with the RFID Guardian. Some
Java Card. Smartcards. Demos. . p.1/30
. p.1/30 Java Card Smartcards Java Card Demos Smart Cards. p.2/30 . p.3/30 Smartcards Credit-card size piece of plastic with embedded chip, for storing & processing data Standard applications bank cards
ANDROID PROGRAMMING - INTRODUCTION. Roberto Beraldi
ANDROID PROGRAMMING - INTRODUCTION Roberto Beraldi Introduction Android is built on top of more than 100 open projects, including linux kernel To increase security, each application runs with a distinct
Java ME & NetBeans Mobility. Petr Suchomel Architect, NetBeans Mobility Sun Microsystems
Java ME & NetBeans Mobility Petr Suchomel Architect, NetBeans Mobility Sun Microsystems Agenda Java ME introduction Java ME applications NetBeans Mobility Edition Power of advanced features Demos, demos,
CSCI E 98: Managed Environments for the Execution of Programs
CSCI E 98: Managed Environments for the Execution of Programs Draft Syllabus Instructor Phil McGachey, PhD Class Time: Mondays beginning Sept. 8, 5:30-7:30 pm Location: 1 Story Street, Room 304. Office
Now SMS/MMS Android Modem Quick Start Guide
Now SMS/MMS Android Modem Quick Start Guide Using a GSM modem, or an Android phone as a modem, is a quick and efficient way to get started with SMS and/or MMS applications. No special service provider
Lecture 1 Introduction to Android
These slides are by Dr. Jaerock Kwon at. The original URL is http://kettering.jrkwon.com/sites/default/files/2011-2/ce-491/lecture/alecture-01.pdf so please use that instead of pointing to this local copy
Mobile Application Languages XML, Java, J2ME and JavaCard Lesson 04 Java
Mobile Application Languages XML, Java, J2ME and JavaCard Lesson 04 Java Oxford University Press 2007. All rights reserved. 1 C and C++ C and C++ with in-line-assembly, Visual Basic, and Visual C++ the
Fundamentals of Java Programming
Fundamentals of Java Programming This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors
Mobile Operating Systems Lesson 07 Symbian OS
Mobile Operating Systems Lesson 07 Symbian OS Oxford University Press 2007. All rights reserved. 1 Oxford University Press 2007. All rights reserved. 2 Symbian OS multi-modal communication support OS for
Android Basics. Xin Yang 2016-05-06
Android Basics Xin Yang 2016-05-06 1 Outline of Lectures Lecture 1 (45mins) Android Basics Programming environment Components of an Android app Activity, lifecycle, intent Android anatomy Lecture 2 (45mins)
Mobile Operating Systems Lesson 05 Windows CE Part 1
Mobile Operating Systems Lesson 05 Windows CE Part 1 Oxford University Press 2007. All rights reserved. 1 Windows CE A 32 bit OS from Microsoft Customized for each specific hardware and processor in order
Wireless Application Protocol (WAP)
Wireless Application Protocol (WAP) Definition Wireless application protocol (WAP) is an application environment and set of communication protocols for wireless devices designed to enable manufacturer-,
NetBeans Profiler is an
NetBeans Profiler Exploring the NetBeans Profiler From Installation to a Practical Profiling Example* Gregg Sporar* NetBeans Profiler is an optional feature of the NetBeans IDE. It is a powerful tool that
The Software Engineering of Mobile Application Development
The Software Engineering of Mobile Application Development Dr. Christelle Scharff Pace University, NY, USA Thanks: NCIIA IBM Agenda Audience Context Java ME Process Mobiles Java ME Android Designing Coding
A Short Introduction to Android
A Short Introduction to Android Notes taken from Google s Android SDK and Google s Android Application Fundamentals 1 Plan For Today Lecture on Core Android Three U-Tube Videos: - Architecture Overview
The Matrex Client/Server Specification 1.1
The Matrex Client/Server Specification 1.1 Table of Contents The Matrex Client/Server Specification 1.1...1 Introduction...1 A usage scenario...2 New project...4 Open project...5 Recently used projects...6
ANDROID BASED MOBILE APPLICATION DEVELOPMENT and its SECURITY
ANDROID BASED MOBILE APPLICATION DEVELOPMENT and its SECURITY Suhas Holla #1, Mahima M Katti #2 # Department of Information Science & Engg, R V College of Engineering Bangalore, India Abstract In the advancing
Frequently Asked Questions: Cisco Jabber 9.x for Android
Frequently Asked Questions Frequently Asked Questions: Cisco Jabber 9.x for Android Frequently Asked Questions (FAQs) 2 Setup 2 Basics 4 Connectivity 8 Calls 9 Contacts and Directory Search 14 Voicemail
An Overview of Java. overview-1
An Overview of Java overview-1 Contents What is Java Major Java features Java virtual machine Java programming language Java class libraries (API) GUI Support in Java Networking and Threads in Java overview-2
Outline: Operating Systems
Outline: Operating Systems What is an OS OS Functions Multitasking Virtual Memory File Systems Window systems PC Operating System Wars: Windows vs. Linux 1 Operating System provides a way to boot (start)
Agent Languages. Overview. Requirements. Java. Tcl/Tk. Telescript. Evaluation. Artificial Intelligence Intelligent Agents
Agent Languages Requirements Overview Java Tcl/Tk Telescript Evaluation Franz J. Kurfess, Cal Poly SLO 211 Requirements for agent Languages distributed programming large-scale (tens of thousands of computers)
Integrating the Internet into Your Measurement System. DataSocket Technical Overview
Integrating the Internet into Your Measurement System DataSocket Technical Overview Introduction The Internet continues to become more integrated into our daily lives. This is particularly true for scientists
Mobile View Software User s Manual
Mobile View Software User s Manual Version 3.7.1 / 3.7.2 Table of Contents 1. Overview...2 1.1 System Requirement...2 1.2 Limitation...2 2. Install the Mobile View Software...3 2.1 Installation on a JAVA
Chapter 13 Embedded Operating Systems
Operating Systems: Internals and Design Principles Chapter 13 Embedded Operating Systems Eighth Edition By William Stallings Embedded System Refers to the use of electronics and software within a product
Mobile Application Development. MIDP & GUI Programmierung
J2ME MIDlets Mobile Application Development MIDP & GUI Programmierung Christoph Denzler Fachhochschule Nordwestschweiz Institut für Mobile und Verteilte Systeme Lernziele Sie wissen wie ein MIDlet kontrolliert
Fachbereich Informatik und Elektrotechnik SunSPOT. Ubiquitous Computing. Ubiquitous Computing, Helmut Dispert
Ubiquitous Computing Ubiquitous Computing The Sensor Network System Sun SPOT: The Sun Small Programmable Object Technology Technology-Based Wireless Sensor Networks a Java Platform for Developing Applications
The Java Virtual Machine and Mobile Devices. John Buford, Ph.D. [email protected] Oct 2003 Presented to Gordon College CS 311
The Java Virtual Machine and Mobile Devices John Buford, Ph.D. [email protected] Oct 2003 Presented to Gordon College CS 311 Objectives Review virtual machine concept Introduce stack machine architecture
Instrumentation Software Profiling
Instrumentation Software Profiling Software Profiling Instrumentation of a program so that data related to runtime performance (e.g execution time, memory usage) is gathered for one or more pieces of the
FileMaker 14. ODBC and JDBC Guide
FileMaker 14 ODBC and JDBC Guide 2004 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks of FileMaker,
Technical Note. Micron Flash Data Integrator (FDI) Support for Java Applications. Introduction. Definition
Technical Note TN-13-09: FDI Support for Java Applications Introduction Micron Flash Data Integrator (FDI) Support for Java Applications Introduction This document provides an instructional reference to
Mobile Development Discovery Document
Mobile Development Discovery Document Prepared By: Abdul Wadood, Atifa Nadeem, Naima Khan and Haris Khan All Rights Reserved No part of this publication may be reproduced, reformatted or transmitted in
STM32JAVA. Embedded Java Solutions for STM32
STM32JAVA Embedded Java Solutions for STM32 What is STM32Java? Solution to develop and to deploy software applications on STM32F0 to STM32F7 microcontrollers using Java Help to reduce the total cost of
Java Interview Questions and Answers
1. What is the most important feature of Java? Java is a platform independent language. 2. What do you mean by platform independence? Platform independence means that we can write and compile the java
Java in Education. Choosing appropriate tool for creating multimedia is the first step in multimedia design
Java in Education Introduction Choosing appropriate tool for creating multimedia is the first step in multimedia design and production. Various tools that are used by educators, designers and programmers
Android Fundamentals 1
Android Fundamentals 1 What is Android? Android is a lightweight OS aimed at mobile devices. It is essentially a software stack built on top of the Linux kernel. Libraries have been provided to make tasks
Workshop on Android and Applications Development
Workshop on Android and Applications Development Duration: 2 Days (8 hrs/day) Introduction: With over one billion devices activated, Android is an exciting space to make apps to help you communicate, organize,
CSE 452: Programming Languages. Acknowledgements. Contents. Java and its Evolution
CSE 452: Programming Languages Java and its Evolution Acknowledgements Rajkumar Buyya 2 Contents Java Introduction Java Features How Java Differs from other OO languages Java and the World Wide Web Java
Avaya VoIP Monitoring Manager User Guide
Avaya VoIP Monitoring Manager User Guide 555-233-510 Issue 2 August 2002 Avaya VoIP Monitoring Manager User Guide Copyright 2002, Avaya Inc. ALL RIGHTS RESERVED The products, specifications, and other
CSC 551: Web Programming. Spring 2004
CSC 551: Web Programming Spring 2004 Java Overview Design goals & features platform independence, portable, secure, simple, object-oriented, Programming models applications vs. applets vs. servlets intro
C# and Other Languages
C# and Other Languages Rob Miles Department of Computer Science Why do we have lots of Programming Languages? Different developer audiences Different application areas/target platforms Graphics, AI, List
Efficient Monitoring of OSGi Applications
Degree project Efficient Monitoring of OSGi Applications Author: Portero Aníbal Supervisor: Abbas Nadeem Date: 2013-08-27 Course Code: 2DV00E, 15 credits Level: Bachelor Department of Computer Science
HP Insight Management Agents architecture for Windows servers
HP Insight Management Agents architecture for Windows servers Technology brief, 2 nd edition Introduction... 3 A first look at the Insight Management Agents architecture... 3 HP Insight Management agents...
Release Notes for Dominion SX Firmware 3.1.6
Release Notes for Dominion SX Firmware 3.1.6 Release Notes Version: 4.0 Release Notes Date: December 4, 2008 Effective: Immediately Applicability: The 3.1.6 Release is applicable to the Dominion SX. SX
Deltek Touch Time & Expense for GovCon. User Guide for Triumph
Deltek Touch Time & Expense for GovCon User Guide for Triumph November 25, 2014 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or
Trace-Based and Sample-Based Profiling in Rational Application Developer
Trace-Based and Sample-Based Profiling in Rational Application Developer This document is aimed at highlighting the importance of profiling in software development and talks about the profiling tools offered
EFFECTIVE QUERY RETRIEVAL SYSTEM IN MOBILE BUSINESS ENVIRONMENT
EFFECTIVE QUERY RETRIEVAL SYSTEM IN MOBILE BUSINESS ENVIRONMENT 1 R.Sivaraman, 2 RM.Chandrasekaran 1 Dy.Director, Center for Convergence of Technologies (CCT), Anna University Tiruchirappalli, Tiruchirappalli,
USER MANUAL SlimComputer
USER MANUAL SlimComputer 1 Contents Contents...2 What is SlimComputer?...2 Introduction...3 The Rating System...3 Buttons on the Main Interface...5 Running the Main Scan...8 Restore...11 Optimizer...14
Android Developer Fundamental 1
Android Developer Fundamental 1 I. Why Learn Android? Technology for life. Deep interaction with our daily life. Mobile, Simple & Practical. Biggest user base (see statistics) Open Source, Control & Flexibility
GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS
Embedded Systems White Paper GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS September 2009 ABSTRACT Android is an open source platform built by Google that includes an operating system,
Avaya one-x Mobile User Guide for iphone
Avaya one-x Mobile User Guide for iphone Release 5.2 January 2010 0.3 2009 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was
LOCATIONS AROUND ME (ANDROID)
IMPACT: International Journal of Research in Engineering & Technology (IMPACT: IJRET) ISSN(E): 2321-8843; ISSN(P): 2347-4599 Vol. 2, Issue 4, Apr 2014, 193-198 Impact Journals LOCATIONS AROUND ME (ANDROID)
Game Center Programming Guide
Game Center Programming Guide Contents About Game Center 8 At a Glance 9 Some Game Resources Are Provided at Runtime by the Game Center Service 9 Your Game Displays Game Center s User Interface Elements
Developing Embedded Software in Java Part 1: Technology and Architecture
Developing Embedded Software in Java Part 1: Technology and Architecture by Michael Barr Embedded Systems Conference Europe The Netherlands November 16-18, 1999 Course #300 Sun s introduction of the Java
Real time vehicle tracking and driver behaviour monitoring using cellular handset based accelerometer and GPS data
Real time vehicle tracking and driver behaviour monitoring using cellular handset based accelerometer and GPS data 4 th Year Electronic and Computing Project Report 05416361 Supervisor: Mr Liam Kilmartin
JProfiler: Code Coverage Analysis Tool for OMP Project
CMU 17-654 & 17-754 Analysis of Software Artifacts Spring 2006 Individual Project: Tool Analysis May 18, 2006 Eun-young Cho [email protected] JProfiler: Code Coverage Analysis Tool for OMP Project Table
Professional Tizen Application Development
Brochure More information from http://www.researchandmarkets.com/reports/2617239/ Professional Tizen Application Development Description: Create powerful, marketable applications with Tizen for the smartphone
Salesforce Classic Guide for iphone
Salesforce Classic Guide for iphone Version 37.0, Summer 16 @salesforcedocs Last updated: July 12, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark
JavaFX Session Agenda
JavaFX Session Agenda 1 Introduction RIA, JavaFX and why JavaFX 2 JavaFX Architecture and Framework 3 Getting Started with JavaFX 4 Examples for Layout, Control, FXML etc Current day users expect web user
Mobile Operating Systems Lesson 03 PalmOS Part 1
Mobile Operating Systems Lesson 03 PalmOS Part 1 Oxford University Press 2007. All rights reserved. 1 PalmOS An OS for handheld devices Designed for highly efficient running of small productivity programs
Porting VNC to Mobile Platforms
Porting VNC to Mobile Platforms Technical and Political Challenges Dr Andy Harter What is VNC? The VNC viewer application takes remote control of a device using the VNC server application on the device
Developer's Cookbook. Building Applications with. The Android. the Android SDK. A Addison-Wesley. James Steele Nelson To
The Android Developer's Cookbook Building Applications with the Android SDK James Steele Nelson To A Addison-Wesley Upper Saddle River, NJ Boston «Indianapolis San Francisco New York Toronto Montreal London
Lecture 25 Symbian OS
CS 423 Operating Systems Design Lecture 25 Symbian OS Klara Nahrstedt Fall 2011 Based on slides from Andrew S. Tanenbaum textbook and other web-material (see acknowledgements) cs423 Fall 2011 1 Overview
Hildon User Interface Style Guide Summary
Hildon User Interface Style Guide Summary Version 1.1 Copyright 2002-2005 Nokia Corporation All rights reserved. Page 1 Table of contents: 1. Introduction to the Hildon UI Style...3 2. Background and Constraints...3
An Adaptive Mobile Application Development Framework
An Adaptive Mobile Application Development Framework Ming-Chun Cheng 1, Shyan-Ming Yuan 1 1 Department of Computer and Information Science, National Chiao Tung University, 1001 Ta Hsueh Rd, Hsinchu 300,
Practice Fusion API Client Installation Guide for Windows
Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction
J2ME Exam Project. P6 Expense Management
Michal Doubek Free University of Bozen - Bolzano J2ME Exam Project P6 Expense Management 1. Contents: 1. Contents:...1 2. The System functions...2 2.1. Client...2 2.2. Server...2 3. The Human Computer
User Manual. Mobile Viewer. Mobile Manager Software (MMS)
Mobile Viewer Mobile Manager Software (MMS) User Manual The picture might differ according to the specification and model. Contents of this manual are protected under copyrights and computer program laws.
9243054 Issue 1. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation
9243054 Issue 1 Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation VPN Client User s Guide 9243054 Issue 1 Reproduction, transfer, distribution or storage of part or all of
LevelOne MUS-1001. 1GB Smart Flash. User Manual V1.0.0-0610
LevelOne MUS-1001 1GB Smart Flash User Manual V1.0.0-0610 CONTENT CHAPTER 1 INTRODUCTION...4 1.1 About this Manual...4 1.2 Support Services...5 CHAPTER 2 PRODUCT OVERVIEW...6 2.1 Package Contents...6 2.2
Mobile Device Manual for 3G DVRs
Mobile Device Manual for 3G DVRs The 3G DVR can be monitored with APPS for supported mobile device operating systems. Please refer to the table below for your specific mobile device application. Please
HTML Code Generator V 1.0 For Simatic IT Modules CP 443-1 IT, 343-1 IT, 243-1 IT
HTML Code Generator V 1.0 For Simatic IT Modules CP 443-1 IT, 343-1 IT, 243-1 IT Manual This manual and program are freeware. Every user can use, copy or forward this program and documentation FREE OF
Chapter 6, The Operating System Machine Level
Chapter 6, The Operating System Machine Level 6.1 Virtual Memory 6.2 Virtual I/O Instructions 6.3 Virtual Instructions For Parallel Processing 6.4 Example Operating Systems 6.5 Summary Virtual Memory General
About Parallels Desktop 7 for Mac
About Parallels Desktop 7 for Mac Parallels Desktop 7 for Mac is a major upgrade to Parallels' award-winning software for running Windows on a Mac. About this Update This update for Parallels Desktop for
Chapter 3 Operating-System Structures
Contents 1. Introduction 2. Computer-System Structures 3. Operating-System Structures 4. Processes 5. Threads 6. CPU Scheduling 7. Process Synchronization 8. Deadlocks 9. Memory Management 10. Virtual
Holly Cummins IBM Hursley Labs. Java performance not so scary after all
Holly Cummins IBM Hursley Labs Java performance not so scary after all So... You have a performance problem. What next? Goals After this talk you will: Not feel abject terror when confronted with a performance
Kitsap Bank Mobile Banking, Mobile Deposit and Text Banking FAQ s
Mobile Banking Kitsap Bank Mobile Banking, Mobile Deposit and Text Banking FAQ s What is Mobile Banking? Mobile Banking is the ability to access Online Banking from your mobile device which includes any
Table of Contents. FiOS TV Remote DVR
Table of Contents GETTING STARTED... 3 COMMON TERMS...3 REQUIREMENTS... 3 ACCESSING FIOS TV... 4 Obtaining an Authorization Code... 5 ON DEMAND... 6 ACCESSING ON DEMAND... 6 BROWSING AND BOOKMARKING VIDEOS...
