Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/ConstantWQKms.java @ 5462:f2371f3aaf03
Show top level folder icons only if node has no factory
If you have an empty folder the folder icon is still shown.
This makes it possible to add functional "Top Level" entries
in the Datacage
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 26 Mar 2013 18:29:13 +0100 |
parents | 8e72777c961c |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; public class ConstantWQKms extends WQKms { public ConstantWQKms() { this(""); } public ConstantWQKms(String name) { super(name); } public ConstantWQKms(int capacity) { this(capacity, ""); } public ConstantWQKms(int capacity, String name) { super(capacity, name); } public ConstantWQKms(double [] kms, double [] qs, double [] ws) { this(kms, qs, ws, ""); } public ConstantWQKms(double [] kms, double [] qs, double [] ws, String name) { super(kms, qs, ws, name); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :