tagcloud/src/TagCloud.java

22 wiersze
584 B
Java
Czysty Zwykły widok Historia

2013-03-11 15:56:43 +00:00
import processing.core.PApplet;
2013-03-15 10:27:14 +00:00
import java.io.FileInputStream;
import java.io.IOException;
/**
* Simple application wrapper to run the TagCloudGenerator from command line.
* Please provide a config.properties for configuration.
*/
2013-03-11 15:56:43 +00:00
public class TagCloud {
2013-03-15 10:27:14 +00:00
public static void main(String[] args) {
try {
Configuration.getInstance().load(new FileInputStream("config.properties"));
} catch (IOException e) {
e.printStackTrace();
return;
}
PApplet.main(new String[]{"--present", "TagCloudGenerator"});
2013-03-11 15:56:43 +00:00
}
}