Merge branch 'collectd-4.6' into collectd-4.7
[collectd.git] / bindings / java / org / collectd / api / CollectdInitInterface.java
index 46379fe..fbfd306 100644 (file)
 
 package org.collectd.api;
 
+/**
+ * Interface for objects implementing an init method.
+ *
+ * @author Florian Forster <octo at verplant.org>
+ * @see Collectd#registerInit
+ */
 public interface CollectdInitInterface
 {
-       int Init ();
+       public int init ();
 }