This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
UserGuideTemplate
jpeterka edited this page Apr 17, 2013
·
12 revisions
- from simple to complex
- example driven
- for complete API there is javadoc
- use formatting, images
- well structured, API, Implementations,
- use code hightlight and blocks
- keep page short, if growing split it into more
Some Example of API usage how it can be structured
- Interface / Abstract
- Impl1
- Impl2
- Impl3
image
Lookup for ...."
// code
Operation1
// operation code
Short notation
// code
See example below, go from simple to more complex, add whatever details that are important, focus mainly on examples with comments
- Button / AbstractButton
- PushButton
- CheckButton
- RadioButton
image
Lookup for a button with text "Apply"
Button b = new PushButton("Apply");
Click a button
b.click();
Short notation
new PushButton("Apply").click();