-
Book Overview & Buying
-
Table Of Contents
Developing Web Applications with Oracle ADF Essentials
By :
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Just like a SELECT statement can join data from multiple tables, a view object can join data from multiple entity objects".
A block of code is set as follows:
protected void doDML(int operation, TransactionEvent e) {
super.doDML(operation, e);
}When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
if (operation == DML_INSERT) { String insStmt = "{call insertActor (?,?)}"; cstmt = getDBTransaction().createCallableStatement(insStmt, 0); try { cstmt.setString(1, getFirstName()); cstmt.setString(2, getLastName()); cstmt.execute(); } catch (Exception ex) { ... }
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking on the Next button moves you to the next screen".
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
Change the font size
Change margin width
Change background colour