You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2017/04/21 20:55:56 UTC

[3/8] incubator-edgent git commit: add missing headers and method doc

add missing headers and method doc

Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/3dd0dc7b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/3dd0dc7b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/3dd0dc7b

Branch: refs/heads/master
Commit: 3dd0dc7b7ad1adaecab4741a87195d6b68d6010c
Parents: d4374bf
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Thu Apr 20 12:04:45 2017 -0400
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Thu Apr 20 12:04:45 2017 -0400

----------------------------------------------------------------------
 .../analytics/math3/UnivariateAggregator.java     |  5 +++++
 .../apache/edgent/analytics/math3/stat/Count.java | 18 ++++++++++++++++++
 2 files changed, 23 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/3dd0dc7b/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/UnivariateAggregator.java
----------------------------------------------------------------------
diff --git a/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/UnivariateAggregator.java b/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/UnivariateAggregator.java
index 52a1730..fc7a9b7 100644
--- a/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/UnivariateAggregator.java
+++ b/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/UnivariateAggregator.java
@@ -25,6 +25,11 @@ package org.apache.edgent.analytics.math3;
  */
 public interface UnivariateAggregator {
   
+    /**
+     * Get the {@code UnivariateAggregate} this
+     * aggregator is associated with.
+     * @return the aggregate
+     */
     UnivariateAggregate getAggregate();
     
     /**

http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/3dd0dc7b/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/stat/Count.java
----------------------------------------------------------------------
diff --git a/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/stat/Count.java b/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/stat/Count.java
index 102f507..274b60d 100644
--- a/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/stat/Count.java
+++ b/analytics/math3/src/main/java/org/apache/edgent/analytics/math3/stat/Count.java
@@ -1,3 +1,21 @@
+/*
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+*/
 package org.apache.edgent.analytics.math3.stat;
 
 import org.apache.commons.math3.stat.descriptive.AbstractStorelessUnivariateStatistic;