Changes between Version 6 and Version 7 of MolgenisFile


Ignore:
Timestamp:
2011-01-20T18:26:50+01:00 (14 years ago)
Author:
Morris Swertz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MolgenisFile

    v6 v7  
    7777{{{
    7878<field type="file" file_decorator="some interface that allows you to validate or handle files easily, building on standard file stuff"/>
     79}}}
     80
     81And then a java interface, for example:
     82{{{
     83public 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
    7992}}}
    8093