The Asian Development Bank (ADB) is a multilateral development finance institution
founded in 1966 to promote social and economic progress in its developing member
countries in Asia and the Pacific (see ADB’s website: http://www.adb.org/about/main).
2.2 ADB’s principal functions are
- lending funds,
- providing grants,
- providing technical assistance and advisory services,
- promoting investments for development purposes, and
- assisting in coordinating the development policies and plans of developing
member countries.
Inquiries
2.3 Loan disbursement is handled by the Loan Administration Division of the Controller’s
Department.
2.4 For loan service payments and billing matters, inquiries are addressed to the
Accounting Division of the Controller’s Department.
Loan or Grant Regulations
3.4 The regulations4
further set out conditions for the use of loan or grant proceeds
financed by ADB, or proceeds administered by ADB.
5
These documents are expressly
incorporated in the associated loan agreement, guarantee agreement, or grant
agreement. If any provision of a loan agreement, guarantee agreement, or grant
agreement is inconsistent with a provision of these regulations, the provision of the
loan agreement, guarantee agreement, or grant agreement governs.
Loan Documents
3.5 Loan documents
6
include the following documents and agreements:
ȕ Thereport and recommendation of the President to the Board of Directors
(RRP) presents the project proposal for consideration by the ADB Board.
ȕ Theproject administration manual (PAM)
7
includes all the information and
schedules describing project implementation and project readiness filters
covering major preproject implementation actions (e.g., government approvals,
procurement, and resettlement) to ensure a rapid start-up and enable early
disbursement. It is mandatory
8
that the PAM be referenced in the RRP and in
the loan (or facility) agreements, is presented as a stand-alone linked document
to the RRP, and serves as the main document describing implementation details.
The PAM is prepared in the course of loan processing and initially agreed with
the government at the loan fact-finding stage. At loan negotiations, the borrower
and ADB shall review and confirm the PAM agreed during loan fact-finding to
ensure consistency with the loan agreement, and such confirmation shall be
reflected in the minutes of the loan negotiations. The detailed cost estimate by
financier (one schedule included in the PAM) is prepared based on Section J6 of
the ADB Operations Manual (Appendix 3A).
9
Related illustrative tables are also
provided in this handbook (Appendix 3B).

AJAX application development process using GWT

  • Welcome to WGT Google tools

  • Write browser applications in Java using the Java IDE of your choice 
  • Welcome to WGT Google tools
  • Debug Java in GWT development mode 
  • Welcome to WGT Google tools
  • Cross-compile your Java code into highly optimized JavaScript 
  • Welcome to WGT Google tools
  • Maintain one code base (Java) for multiple browser implementations (JavaScript) 
  • Welcome to WGT Google tools

AJAX application development process using GWT

This Build a Sample GWT Application tutorial is divided into 8 sections following a typical application development cycle. Each section
  • Welcome to WGT Google tools
builds on the previous sections. In this basic implementation of StockWatcher, all functionality is coded on the client-side. Server-side coding and client/server communications are covered in other tutorials.
Tasks: What you’ll doConcepts: What you’ll learnGWT Tools and APIs: What you’ll use
1. Create a GWT ProjectGenerate the files and directories you need to get started.Google Plugin for Eclipse; GWT command-line tool webAppCreator; Development Mode
2. Design the ApplicationIdentify requirements, constraints, and implementation strategies.Language constraints
3. Build the User InterfaceLay out the visual design and add user interface components.GWT widgets and panels, the Root panel
4. Manage Events on the ClientHandling mouse and keyboard events.ClickHandler and KeyPressHandler interfaces
5. Code Functionality on the ClientMaintain one code base for multiple browser implementations. Leveraging your Java IDE’s features such as refactoring and code completion.various GWT methods
6. Debug a GWT ApplicationDebug the Java code before compiling it into JavaScript. Leverage your Java IDE’s debugging tools by running the application in development mode.Development Mode
7. Apply StyleApply visual style to the application. Define the visual style in CSS. Set the class attributes on HTML elements programmatically. Change styles dynamically. Include static elements, such as image files.GWT module; GWT themes; application style sheet; GWT methods: addStyleName, addStyleDependentName, setStyleName; automatic resource inclusion
8. Compile a GWT ApplicationCompile your client-side Java code into JavaScript. Test in production mode. Learn about the benefits of deferred binding.GWT compiler

What’s Next

If you have not set up your development environment with the Java SDK, a Java IDE such as Eclipse, and the latest distribution of Google Web Toolkit, do that before you begin.
You’re ready to create a GWT project.