comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/ManagedFacet.java @ 6139:7c2a30198592

Add boundToOut handling to ManagedFacets.
author Andre Heinecke <aheinecke@intevation.de>
date Fri, 31 May 2013 15:27:06 +0200
parents af13ceeba52a
children 7aa5ac17d728
comparison
equal deleted inserted replaced
6138:1d690acf1fdb 6139:7c2a30198592
39 public ManagedFacet() { 39 public ManagedFacet() {
40 } 40 }
41 41
42 public ManagedFacet(String name, int index, String desc, String uuid, 42 public ManagedFacet(String name, int index, String desc, String uuid,
43 int pos, int active, int visible) { 43 int pos, int active, int visible) {
44 this(name, index, desc, uuid, pos, active, visible, null);
45 }
46
47 public ManagedFacet(String name, int index, String desc, String uuid,
48 int pos, int active, int visible, String boundToOut) {
44 super(index, name, desc); 49 super(index, name, desc);
45 50
46 this.uuid = uuid; 51 this.uuid = uuid;
47 this.position = pos; 52 this.position = pos;
48 this.active = active; 53 this.active = active;
49 this.visible = visible; 54 this.visible = visible;
55 this.boundToOut = boundToOut;
50 } 56 }
51 57
52 /** 58 /**
53 * Sets position (will be merged to position in ThemeList). 59 * Sets position (will be merged to position in ThemeList).
54 */ 60 */

http://dive4elements.wald.intevation.org