Updated copyright message.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / Module.java
1 /*
2  * Meviz - Various tools collection to work with multimedia.
3  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
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.
8  */
9
10 package eu.svjatoslav.meviz;
11
12 public interface Module {
13
14     String getDescription();
15
16     String getModuleCommand();
17
18     void run(String args[]) throws Exception;
19
20     void showCommandlineHelp();
21
22 }