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