Esempio n. 1
0
 @Override
 public T afterFormFinish(String formName, T properties) throws Throwable {
   PropertiesDynamicMethodHelper.afterFormFinish(properties, formName, repository);
   return properties;
 }
Esempio n. 2
0
 @Override
 public T beforeFormPresent(String formName, T properties) throws Throwable {
   PropertiesDynamicMethodHelper.beforeFormPresent(properties, formName);
   return properties;
 }
Esempio n. 3
0
 @Override
 public T afterFormBack(String formName, T properties) throws Throwable {
   PropertiesDynamicMethodHelper.afterFormBack(properties, formName);
   return properties;
 }
Esempio n. 4
0
 @Override
 public T afterProperty(String propName, T properties) throws Throwable {
   PropertiesDynamicMethodHelper.afterProperty(properties, propName);
   return properties;
 }
Esempio n. 5
0
 @Override
 public T beforePropertyActivate(String propName, T properties) throws Throwable {
   PropertiesDynamicMethodHelper.beforePropertyActivate(properties, propName);
   return properties;
 }
Esempio n. 6
0
 @Override
 public Properties afterFormNext(String formName, Properties properties) throws Throwable {
   PropertiesDynamicMethodHelper.afterFormNext(properties, formName);
   return properties;
 }
Esempio n. 7
0
 @Override
 public Properties beforePropertyPresent(String propName, Properties properties) throws Throwable {
   PropertiesDynamicMethodHelper.beforePropertyPresent(properties, propName);
   return properties;
 }
Esempio n. 8
0
 @Override
 public Properties validateProperty(String propName, Properties properties) throws Throwable {
   PropertiesDynamicMethodHelper.validateProperty(properties, propName);
   return properties;
 }