2525import seven .wapperInt .Wrapper ;
2626import seven .wapperInt .callBack .DataFilterInterface ;
2727import seven .wapperInt .callBack .DataFilterColumnInterface ;
28- import seven .wapperInt .callBack .DataProcessInterface ;
29- import seven .wapperInt .callBack .imp .DefaultDataFiter ;
30- import seven .wapperInt .callBack .imp .DefaultProcess ;
28+ import seven .wapperInt .callBack .DataFilterProcessInterface ;
29+ import seven .wapperInt .callBack .imp .DefaultDataFilter ;
30+ import seven .wapperInt .callBack .imp .DefaultDataProFilter ;
3131
3232import java .io .File ;
3333import java .util .*;
3737 * @date 2016年4月12日-下午4:07:57
3838 */
3939public abstract class WrapperObj <T > extends Wrapper {
40- protected DataFilterInterface filter =new DefaultDataFiter <Object >();
41- protected DataProcessInterface process =new DefaultProcess <Object >();
40+ protected DataFilterInterface filter =new DefaultDataFilter <Object >();
41+ protected DataFilterProcessInterface process =new DefaultDataProFilter <Object >();
4242 protected List <String > filterColBy_key =new ArrayList <>();
4343 protected List <String > filterColBy_value =new ArrayList <>();
4444 protected Comparator <? super Object > c ;
@@ -58,7 +58,7 @@ protected boolean isNull(Map<String, String> map) {
5858
5959
6060 public Wrapper FilterCol (DataFilterColumnInterface df ) {
61- for (String s :df .Filter () ) {
61+ for (String s :df .filter () ) {
6262 filterColBy_key .add (s );
6363 }
6464 return this ;
@@ -103,7 +103,7 @@ public <T> T CreateMap(String key)throws Exception {
103103 public Wrapper Filter (DataFilterInterface <?> filter ) {
104104 this .filter = filter ;return this ;
105105 }
106- public Wrapper Process (DataProcessInterface <?> process ) {
106+ public Wrapper Process (DataFilterProcessInterface <?> process ) {
107107 this .process = process ;return this ;
108108 }
109109}
0 commit comments