comparison gwt-client/src/main/java/org/dive4elements/river/client/shared/model/AbstractFixBunduArtifact.java @ 9256:6c24c857ccf9

fixation refactoring and inputItem behaviour to interfaces
author gernotbelger
date Fri, 13 Jul 2018 12:04:21 +0200
parents 02739b8c010d
children
comparison
equal deleted inserted replaced
9255:9be51f776798 9256:6c24c857ccf9
34 34
35 public AbstractFixBunduArtifact(final String uuid, final String hash, final boolean inBackground, final List<CalculationMessage> messages) { 35 public AbstractFixBunduArtifact(final String uuid, final String hash, final boolean inBackground, final List<CalculationMessage> messages) {
36 super(uuid, hash, inBackground, messages); 36 super(uuid, hash, inBackground, messages);
37 } 37 }
38 38
39 public FixFilter getFilter() {
40 return createFilter();
41 }
42
43 protected abstract String getEventstateId(); 39 protected abstract String getEventstateId();
44 40
45 protected FixFilter createFilter() { 41 public final FixFilter getFilter() {
46 if (this.filter == null) { 42 if (this.filter == null) {
47 this.filter = new FixFilter(); 43 this.filter = new FixFilter();
48 } 44 }
49 final DataList[] old = this.artifactDescription.getOldData(); 45 final DataList[] old = this.artifactDescription.getOldData();
50 46

http://dive4elements.wald.intevation.org