bindings/java/: Add some javadoc markup to the interfaces.
[collectd.git] / bindings / java / org / collectd / api / CollectdShutdownInterface.java
index 909f849..55e2740 100644 (file)
 
 package org.collectd.api;
 
+/**
+ * Interface for objects implementing a shutdown function.
+ *
+ * @author Florian Forster <octo at verplant.org>
+ * @see Collectd#registerShutdown
+ */
 public interface CollectdShutdownInterface
 {
-       int Shutdown ();
+       public int shutdown ();
 }