comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/Module.java @ 3786:4adc35aa655c

merged flys-artifacts/2.9.1
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:14:47 +0200
parents 28be160b5870
children
comparison
equal deleted inserted replaced
3719:e82acd5c86f7 3786:4adc35aa655c
1 package de.intevation.flys.artifacts.model;
2
3 /**
4 * Represents a Module as is is loaded from the config
5 */
6 public class Module {
7
8 private String name;
9 private boolean selected;
10
11 public Module(String name, boolean selected) {
12 this.name = name;
13 this.selected = selected;
14 }
15
16 public String getName() {
17 return this.name;
18 }
19
20 public boolean isSelected() {
21 return this.selected;
22 }
23 }
24
25 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 tw=80:

http://dive4elements.wald.intevation.org