All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getmage.App Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
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