/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.ohnosequences.util;
import java.util.ArrayList;
/**
*
* @author Pablo Pareja Tobes <ppareja@era7.com>
*/
public interface Executable {
public void execute(ArrayList<String> args);
}