Package org.metrapp.filters

Examples of org.metrapp.filters.Filter


        DataFrame df = new StringDataFrame();
        df.createDataFrameAndFillItWithData(xmlDocument);
        Controller.getInstance().updateDataFrame(df);
       
        Filter filter = filterFromClient;
        
        filter.filterData(df, caller, code, null);
       
        //RESULT SHOULD BE PASSED TO CLIENT AS XML
        return true;
    }
View Full Code Here


   
    public static void main(String[] args) {
       
        //AT THIS POINT IN CLIENT'S PROGRAM OBJECTS OF CONTROLLER, LOADER, DATAFRAME, FILTER, ZHR, POPULATION INDEX SHOULD BE CREATED AND PASSED TO FACADE
        String fileLocation = null;
        Filter filter = null;
       
        facade.executeClientRequest(fileLocation, filter);
    }
View Full Code Here

    @Override
    public void createFilter(DataFrame d, RCaller caller, RCode code, LinkedList<String> parameters) {
       
        //NOTE FilterByTime should be refactored to FilterByDate. Notify all commiters before change.
       
        Filter f = new FilterByTime();
        f.filterData(d, caller, code, parameters);
    }
View Full Code Here

TOP

Related Classes of org.metrapp.filters.Filter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.