Package org.metrapp.api

Source Code of org.metrapp.api.Client

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/

package org.metrapp.api;

import org.metrapp.filters.Filter;

/**
*
* @author Ilija
*/
public class Client {
   
    private static Facade facade;
   
    public Client (){
        facade = new Facade();
    }
   
    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);
    }
}
TOP

Related Classes of org.metrapp.api.Client

TOP
Copyright © 2018 www.massapi.com. 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.