2 * Meviz - Various tools collection to work with multimedia.
3 * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public License
7 * as published by the Free Software Foundation.
10 package eu.svjatoslav.meviz;
12 public interface Module {
14 public String getDescription();
16 public String getModuleCommand();
18 public void run(String args[]) throws Exception;
20 public void showCommandlineHelp();