1 package org.exoplatform.services.workflow; 2 3 import java.util.Map ; 4 import java.util.List ; 5 import java.util.ResourceBundle ; 6 7 12 public interface Form { 13 14 public List getVariableFormats(); 15 16 public List getSubmitButtons(); 17 18 public String getStateName(); 19 20 public ResourceBundle getResourceBundle(); 21 22 public class Attribute { 23 String name_ ; 24 Object value_ ; 25 26 public Attribute(String name, Object value) { 27 name_ = name ; 28 value_ = value ; 29 } 30 31 public String getName() { 32 return name_; 33 } 34 35 public Object getValue() { 36 return value_; 37 } 38 } 39 40 } 41 | Popular Tags |