]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionSpecAttribute.java
Implementation of a first draft of editorView for the process parameters.
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / execution / ExecutionSpecAttribute.java
index 235171b1de1bbaa14258233fb83fcf5e75c52c57..22d981f4412616d3cc0a69ae8feca2002370f7e8 100644 (file)
 
 package org.argeo.slc.execution;
 
+/**
+ * 
+ * This interface stands for one attribute of a given flow.
+ * 
+ * We mainly have two implementations :
+ * 
+ * + Primitive attributes (no predefined choice, the end user must compute a
+ * String, a Float, an Integer...)
+ * 
+ * + RefSpecAttribute which enable two things + a reference to another object of
+ * the application context + the display of some choices among which the end
+ * user can choose.
+ * 
+ * Note :
+ * 
+ * @see org.argeo.slc.core.execution.PrimitiveUtils : this class offers some
+ *      helper, among others to cast the various type of primitive attribute.
+ * 
+ * @author bsinou
+ * 
+ */
 public interface ExecutionSpecAttribute {
        public Object getValue();