summaryrefslogtreecommitdiff
path: root/java/JoelibDescriptorInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/JoelibDescriptorInfo.java')
-rw-r--r--java/JoelibDescriptorInfo.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/java/JoelibDescriptorInfo.java b/java/JoelibDescriptorInfo.java
deleted file mode 100644
index 851d650..0000000
--- a/java/JoelibDescriptorInfo.java
+++ /dev/null
@@ -1,15 +0,0 @@
-import joelib2.feature.FeatureHelper;
-
-class JoelibDescriptorInfo {
- public static void main(String[] args) {
- FeatureHelper helper = FeatureHelper.instance();
- System.out.println("---"); // document separator for Joelib debug messages
- for (Object feature : helper.getNativeFeatures() ) {
- System.out.println("- :java_class: \""+feature.toString()+"\"");
- // methods for accessing feature descriptions e.g. with
- // FeatureFactory.instance().getFeature(feature.toString()).getDescription().getText() or
- // FeatureFactory.instance().getFeature(feature.toString()).getDescription().getHtml()
- // are defunct
- }
- }
-}