Many plugins and files: Convert "interval_g" and "vl->interval" to cdtime_t.
[collectd.git] / bindings / java / org / collectd / api / ValueList.java
index 1baeff2..b8d6f40 100644 (file)
@@ -87,10 +87,16 @@ public class ValueList extends PluginData {
         _ds = new DataSet (_type, dsrc);
     }
 
+    /**
+     * Returns the interval (in milliseconds) of the value list.
+     */
     public long getInterval() {
         return _interval;
     }
 
+    /**
+     * Sets the interval (in milliseconds) of the value list.
+     */
     public void setInterval(long interval) {
         _interval = interval;
     }