bindings/java/: Unify inline documentation terms.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 24 Feb 2009 09:12:45 +0000 (10:12 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 24 Feb 2009 09:16:54 +0000 (10:16 +0100)
s/function/method/

bindings/java/org/collectd/api/CollectdConfigInterface.java
bindings/java/org/collectd/api/CollectdFlushInterface.java
bindings/java/org/collectd/api/CollectdInitInterface.java
bindings/java/org/collectd/api/CollectdLogInterface.java
bindings/java/org/collectd/api/CollectdMatchFactoryInterface.java
bindings/java/org/collectd/api/CollectdMatchInterface.java
bindings/java/org/collectd/api/CollectdNotificationInterface.java
bindings/java/org/collectd/api/CollectdReadInterface.java
bindings/java/org/collectd/api/CollectdShutdownInterface.java
bindings/java/org/collectd/api/CollectdWriteInterface.java

index 7090507..060f944 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a config function.
+ * Interface for objects implementing a config method.
  *
  * @author Florian Forster &lt;octo at verplant.org&gt;
  * @see Collectd#registerConfig(String, CollectdConfigInterface)
index abad042..3e492dd 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a flush function.
+ * Interface for objects implementing a flush method.
  *
  * @author Florian Forster &lt;octo at verplant.org&gt;
  * @see Collectd#registerFlush
index c198036..fbfd306 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing an init function.
+ * Interface for objects implementing an init method.
  *
  * @author Florian Forster &lt;octo at verplant.org&gt;
  * @see Collectd#registerInit
index 1ab9ae1..ba0350a 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a log function.
+ * Interface for objects implementing a log method.
  *
  * @author Florian Forster &lt;octo at verplant.org&gt;
  * @see Collectd#registerLog
index 24cab59..d2801a1 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a match factory.
+ * Interface for objects implementing a "match factory".
  *
  * Objects implementing this interface are used to create objects implementing
  * the CollectdMatchInterface interface.
index dbda6ed..cc8a99e 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a match function.
+ * Interface for objects implementing a match method.
  *
  * These objects are instantiated using objects which implement the
  * CollectdMatchFactoryInterface interface. They are not instantiated by the
index 4a18975..d278fe2 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a notification function.
+ * Interface for objects implementing a notification method.
  *
  * @author Florian Forster &lt;octo at verplant.org&gt;
  * @see Collectd#registerNotification
index 2ff25b2..67f1898 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a read function.
+ * Interface for objects implementing a read method.
  *
  * Objects implementing this interface can be registered with the daemon. Their
  * read method is then called periodically to acquire and submit values.
index 55e2740..108c54e 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a shutdown function.
+ * Interface for objects implementing a shutdown method.
  *
  * @author Florian Forster &lt;octo at verplant.org&gt;
  * @see Collectd#registerShutdown
index a1220f5..28e0230 100644 (file)
@@ -22,7 +22,7 @@
 package org.collectd.api;
 
 /**
- * Interface for objects implementing a write function.
+ * Interface for objects implementing a write method.
  *
  * @author Florian Forster &lt;octo at verplant.org&gt;
  * @see Collectd#registerWrite