ReflectedImage Component

This Echo3 component is a subclass of StaticImage in which a relfection can be created. The gap between the image and its relfect, the image reflectivity and the amount of relfected image can be specified.

See StaticImage for a description of the various methods for loading images from the server filesystem, URL, resource paths and Java 2D graphics.

Demonstration

This image was loaded from the AccuWeather site using a URL which points to the current weather in the Northeast United States.

ReflectedImage - Summary API

                   
package org.informagen.echo.app;

import org.informagen.echo.app.StaticImage;

// Echo - Components
import nextapp.echo.app.ImageReference;

public class ReflectedImage extends StaticImage {

    public ReflectedImage()
    public ReflectedImage(final ImageReference imageReference)
    
    public int getGap()
    public void setGap(int gap )

    public double getReflectivity()
    public void setReflectivity(double reflectivity )

    public double getReflectedHeight()
    public void setReflectedHeight(double reflectedHeight )
}