- Clone the project
git clone https://github.com/Youssef-Hammad/marker.git
- Launch Android Studio
- Open An Existing Project
OR,
- Launch Android Studio
- "Get from Version Control"
- URL: https://github.com/Youssef-Hammad/marker.git
Documentation is automatically generated using Android Studio's javadoc tool integration.
To generate documentation, in Android Studio, goto Tools -> Generate JavaDoc... -> OK
Generated documentation will be outputted to ${PROJECT_DIR}/docs
JavaDoc generates documentation based off of comments starting with a /** and ending with a */
/**
* Returns an Image object that can then be painted on the screen.
* The url argument must specify an absolute <a href="#{@link}">{@link URL}</a>. The name
* argument is a specifier that is relative to the url argument.
* <p>
* This method always returns immediately, whether or not the
* image exists. When this applet attempts to draw the image on
* the screen, the data will be loaded. The graphics primitives
* that draw the image will incrementally paint on the screen.
*
* @param url an absolute URL giving the base location of the image
* @param name the location of the image, relative to the url argument
* @return the image at the specified URL
* @see Image
*/
public Image getImage(URL url, String name) {
try {
return getImage(new URL(url, name));
} catch (MalformedURLException e) {
return null;
}
}The Java Coding Convention is used.

