Changeset 18930 in josm for trunk/src/org


Ignore:
Timestamp:
2023-12-31T20:54:02+01:00 (11 months ago)
Author:
stoecker
Message:

checkstyle

Location:
trunk/src/org/openstreetmap/josm/gui/animation
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/animation/DropImage.java

    r18929 r18930  
    2020/**
    2121 * A random image displayed when {@link ChristmasExtension} is active.
    22  * @since xxx
     22 * @since 18929
    2323 */
    2424class DropImage implements IAnimObject {
     
    7474                ArrayList<File> dirs = new ArrayList<File>();
    7575                dirs.add(new File(url.toURI()));
    76                 do
    77                 {
    78                     for(File f : dirs.remove(0).listFiles()) {
    79                         if(f.isFile()) {
     76                do {
     77                    for (File f : dirs.remove(0).listFiles()) {
     78                        if (f.isFile()) {
    8079                            result.add(f.getPath());
    8180                        } else {
     
    8382                        }
    8483                    }
    85                 } while(dirs.size() > 0);
     84                } while (dirs.size() > 0);
    8685                name = result.get(seed.nextInt(result.size()));
    8786            } else if (url != null && url.getProtocol().equals("jar")) {
     
    8988                JarFile jar = new JarFile(URLDecoder.decode(jarPath, "UTF-8"));
    9089                Enumeration<JarEntry> entries = jar.entries();
    91                 while(entries.hasMoreElements()) {
     90                while (entries.hasMoreElements()) {
    9291                    String fileName = entries.nextElement().getName();
    93                     if(fileName.startsWith(path) && !fileName.endsWith("/")) {
     92                    if (fileName.startsWith(path) && !fileName.endsWith("/")) {
    9493                        result.add(fileName.substring(7));
    9594                    }
  • trunk/src/org/openstreetmap/josm/gui/animation/IAnimObject.java

    r18929 r18930  
    66/**
    77 * An animated object
    8  * @since xxx
     8 * @since 18929
    99 */
    1010public interface IAnimObject {
    1111
    12     public void paint(Graphics g);
     12    /** Paint the object
     13    * @param g the graphics object to paint to
     14    */
     15    void paint(Graphics g);
    1316
    14     public void setExtend(int w, int h);
     17    /** Set the extend when window size changed
     18    * @param w window width
     19    * @param h window height
     20    */
     21    void setExtend(int w, int h);
    1522
    16     public void animate();
     23    /** Animate the object - Cause next step of animation
     24    */
     25    void animate();
    1726}
Note: See TracChangeset for help on using the changeset viewer.