Merge branch 'collectd-4.10' into collectd-5.0
[collectd.git] / bindings / java / org / collectd / api / CollectdConfigInterface.java
index 8753072..060f944 100644 (file)
 
 package org.collectd.api;
 
+/**
+ * Interface for objects implementing a config method.
+ *
+ * @author Florian Forster <octo at verplant.org>
+ * @see Collectd#registerConfig(String, CollectdConfigInterface)
+ */
 public interface CollectdConfigInterface
 {
-       public int Config (OConfigItem ci);
+       public int config (OConfigItem ci);
 }