view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/sq/SQOverviewFacet.java @ 4255:670e98f5a441

Fixed leak while merging facets. The ThemeList that is used by OutputHelper to sort the Facets for an Output now uses a list to store the ManagedFacets. The correct order is made up by sorting the List using Collections.sort() function of the Java JDK. Therfore, the ManagedFacet class implements the Comparable interface. The return value of its compareTo(other) method depends on the value of the 'position' field.
author Ingo Weinzierl <weinzierl.ingo@googlemail.com>
date Thu, 25 Oct 2012 14:01:46 +0200
parents 02d5731b43a2
children
line wrap: on
line source
package de.intevation.flys.artifacts.model.sq;

import org.apache.log4j.Logger;

import de.intevation.artifacts.Artifact;
import de.intevation.artifacts.CallContext;

import de.intevation.flys.artifacts.model.DataFacet;
import de.intevation.flys.artifacts.model.FacetTypes;

import de.intevation.flys.artifacts.states.DefaultState.ComputeType;

public class SQOverviewFacet
extends      DataFacet
implements   FacetTypes
{
    private static final Logger logger = Logger.getLogger(SQOverviewFacet.class);

    protected int fractionIdx;

    public SQOverviewFacet() {
    }

    public SQOverviewFacet(
        int    idx,
        int    fractionIdx,
        String name,
        String description,
        String hash,
        String stateId
    ) {
        super(idx, name, description, ComputeType.ADVANCE, hash, stateId);
        this.fractionIdx = fractionIdx;
    }


    @Override
    public Object getData(Artifact artifact, CallContext context) {
        logger.debug("SQOverviewFacet.getData");

        switch(fractionIdx) {
            case 0: return "sq_relation_a";
            case 1: return "sq_relation_b";
            case 2: return "sq_relation_c";
            case 3: return "sq_relation_d";
            case 4: return "sq_relation_e";
            case 5: return "sq_relation_f";
            default: return null;
        }
    }


    @Override
    public SQOverviewFacet deepCopy() {
        SQOverviewFacet copy = new SQOverviewFacet();
        copy.set(this);

        return copy;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org