comparison artifacts/src/main/java/org/dive4elements/river/themes/ThemeGroup.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-artifacts/src/main/java/org/dive4elements/river/themes/ThemeGroup.java@bd047b71ab37
children 4897a58c8746
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.themes;
2
3 import java.util.Map;
4
5 /**
6 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
7 */
8 public class ThemeGroup {
9
10 protected String name;
11
12 protected Map<String, Theme> themes;
13
14
15 public ThemeGroup(String name, Map<String, Theme> themes) {
16 this.name = name;
17 this.themes = themes;
18 }
19
20 public String getName() {
21 return this.name;
22 }
23
24 public Map<String, Theme> getThemes() {
25 return this.themes;
26 }
27
28 public Theme getThemeByName(String name) {
29 return themes.get(name);
30 }
31 }
32 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org