Javadoc improvements.

This commit is contained in:
Michael Bayne
2010-09-21 06:12:19 +00:00
parent 90301057f6
commit ac3fd45c8a
2 changed files with 6 additions and 2 deletions
@@ -45,7 +45,7 @@ import com.samskivert.util.StringUtil;
import static com.threerings.getdown.Log.log; import static com.threerings.getdown.Log.log;
/** /**
* Does something extraordinary. * The main application entry point for Getdown.
*/ */
public class GetdownApp public class GetdownApp
{ {
@@ -26,8 +26,12 @@ package com.threerings.getdown.launcher;
import java.awt.Image; import java.awt.Image;
/**
* Abstracts away the process of loading an image so that it can be done differently in the app and
* applet.
*/
public interface ImageLoader public interface ImageLoader
{ {
/** Loads and returns the image with the supplied path. */
public Image loadImage (String path); public Image loadImage (String path);
} }