view flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultTheme.java @ 3847:f3b821735e39

Calculate the info url via i18n Don't fetch the info url from the artifact service and use i18n to calculate the url by using the official gauge and river number. flys-client/trunk@5582 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Mon, 24 Sep 2012 08:39:22 +0000
parents 98c7a46ec5ae
children
line wrap: on
line source
package de.intevation.flys.client.shared.model;

/**
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class DefaultTheme implements Theme {

    protected int position;

    protected int index;

    protected int active;

    protected int visible;

    protected String artifact;

    protected String facet;

    protected String description;

    /** CollectionItem associated with this facet/themes artifact. */
    protected CollectionItem collectionItem;


    public DefaultTheme() {
    }


    public DefaultTheme(
        int     pos,
        int     index,
        int     active,
        int     visible,
        String  art,
        String  facet,
        String  description)
    {
        this.position       = pos;
        this.index          = index;
        this.active         = active;
        this.visible        = visible;
        this.artifact       = art;
        this.facet          = facet;
        this.description    = description;
        this.collectionItem = null;
    }


    public int getPosition() {
        return position;
    }


    public void setPosition(int pos) {
        this.position = pos;
    }


    public int getIndex() {
        return index;
    }


    public int getActive() {
        return active;
    }


    public void setActive(int active) {
        this.active = active;
    }


    public String getArtifact() {
        return artifact;
    }


    public String getFacet() {
        return facet;
    }


    public String getDescription() {
        return description;
    }


    public void setDescription(String description) {
        this.description = description;
    }


    public int getVisible() {
        return visible;
    }


    public void setVisible(int visible) {
        this.visible = visible;
    }


    public boolean equals(Object o) {
        if (!(o instanceof DefaultTheme)) {
            return false;
        }

        DefaultTheme other = (DefaultTheme) o;

        if (other.position != position) {
            return false;
        }

        if (!other.artifact.equals(artifact)) {
            return false;
        }

        if (other.active != active) {
            return false;
        }

        if (!other.facet.equals(facet)) {
            return false;
        }

        if (!other.description.equals(description)) {
            return false;
        }

        if (other.index != index) {
            return false;
        }

        if (other.visible != visible) {
            return false;
        }

        return true;
    }

    /** Get the CollectionItem representing the facets artifact. */
    @Override
    public CollectionItem getCollectionItem() {
        return collectionItem;
    }

    /** Set the CollectionItem representing the facets artifact. */
    @Override
    public void setCollectionItem(CollectionItem ci) {
        this.collectionItem = ci;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org