Changes between Version 6 and Version 7 of MolgenisFile
- Timestamp:
- 2011-01-20T18:26:50+01:00 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MolgenisFile
v6 v7 77 77 {{{ 78 78 <field type="file" file_decorator="some interface that allows you to validate or handle files easily, building on standard file stuff"/> 79 }}} 80 81 And then a java interface, for example: 82 {{{ 83 public interface FileInputDecorator 84 { 85 //decorator that influences how this thing is rendered 86 public String render(); 87 88 //validate the file in how many ways you want 89 public MolgenisMessage validate(); 90 } 91 79 92 }}} 80 93