io.getmage.App Maven / Gradle / Ivy
package io.getmage;
/**
* Hello world!
*
*/
public class App
{
/**
* Returns an Image object that can then be painted on the screen.
* The url argument must specify an absolute
* argument is a specifier that is relative to the url argument.
* 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 args an absolute URL giving the base location of the image
*/
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy