]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/AbstractSpecAttribute.java
Add generate script
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / AbstractSpecAttribute.java
1 package org.argeo.slc.core.execution;
2
3 import org.argeo.slc.execution.ExecutionSpecAttribute;
4
5 public abstract class AbstractSpecAttribute implements ExecutionSpecAttribute {
6 private Boolean isParameter = false;
7 private Boolean isFrozen = false;
8 private Boolean isHidden = false;
9
10 /** Has to be set at instantiation */
11 public Boolean getIsParameter() {
12 return isParameter;
13 }
14
15 public void setIsParameter(Boolean isParameter) {
16 this.isParameter = isParameter;
17 }
18
19 /** Cannot be overridden at runtime */
20 public Boolean getIsFrozen() {
21 return isFrozen;
22 }
23
24 public void setIsFrozen(Boolean isFinal) {
25 this.isFrozen = isFinal;
26 }
27
28 /** Should not be shown to the end user */
29 public Boolean getIsHidden() {
30 return isHidden;
31 }
32
33 public void setIsHidden(Boolean isHidden) {
34 this.isHidden = isHidden;
35 }
36
37 }