diff artifacts/src/main/java/org/dive4elements/river/themes/Theme.java @ 9555:ef5754ba5573

Implemented legend aggregation based on type of themes. Added theme-editor style configuration for aggregated legend entries. Only configured themes get aggregated.
author gernotbelger
date Tue, 23 Oct 2018 16:26:48 +0200
parents af13ceeba52a
children
line wrap: on
line diff
--- a/artifacts/src/main/java/org/dive4elements/river/themes/Theme.java	Mon Oct 22 18:26:05 2018 +0200
+++ b/artifacts/src/main/java/org/dive4elements/river/themes/Theme.java	Tue Oct 23 16:26:48 2018 +0200
@@ -9,8 +9,6 @@
 package org.dive4elements.river.themes;
 
 import org.w3c.dom.Document;
-import org.w3c.dom.Node;
-
 
 /**
  * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
@@ -18,110 +16,22 @@
 public interface Theme {
 
     /**
-     * Method to initialize the theme.
-     *
-     * @param config The configuration node.
-     */
-    void init(Node config);
-
-
-    /**
      * Returns the name of the theme.
      *
      * @return the name of the theme.
      */
     String getName();
 
-
-    /**
-     * Returns the description of the theme.
-     *
-     * @return the description of the theme.
-     */
     String getDescription();
 
-
-    String getFacet();
-
     void setFacet(String facet);
 
-    int getIndex();
-
     void setIndex(int index);
 
-
-    /**
-     * Adds a new attribute.
-     *
-     * @param name The name of the attribute.
-     * @param value The value of the attribute.
-     */
-    void addAttribute(String name, String value);
-
-
-    /**
-     * Returns the value of a specific attribute.
-     *
-     * @param name the name of the attribute.
-     *
-     * @return the value of the attribute <i>name</i>.
-     */
-    String getAttribute(String name);
-
-
-    /**
-     * Adds a new field to the theme.
-     *
-     * @param name The name of the field.
-     * @param field The field.
-     */
-    void addField(String name, ThemeField field);
-
-
-    /**
-     * Sets the value of an field.
-     *
-     * @param name The name of the field.
-     * @param value The new value of the field.
-     */
-    void setFieldValue(String name, Object value);
-
-
-    /**
-     * Returns the field specified by name.
-     *
-     * @param name The name of the desired field.
-     *
-     * @return an field.
-     */
-    ThemeField getField(String name);
-
-
-    /**
-     * Returns the typename of a field.
-     *
-     * @param name the name of the field.
-     *
-     * @return the typename of a field.
-     */
-    String getFieldType(String name);
-
-
-    /**
-     * Returns the value of a field.
-     *
-     * @param name The name of the field.
-     *
-     * @return the value of a field.
-     */
-    Object getFieldValue(String name);
-
-
     /**
      * Dumps the theme to XML.
      *
      * @return a document.
      */
     Document toXML();
-}
-// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :
+}
\ No newline at end of file

http://dive4elements.wald.intevation.org