/*
* 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);
}
}