IGNITE-7110: Javadoc package descriptions missed for ML this closes #3174
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1f63b811 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1f63b811 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1f63b811 Branch: refs/heads/ignite-zk Commit: 1f63b8115127c0ea38430c85bf9fc7a1d85ca210 Parents: e39283e Author: YuriBabak <[email protected]> Authored: Thu Dec 7 19:33:27 2017 +0300 Committer: Yury Babak <[email protected]> Committed: Thu Dec 7 19:33:27 2017 +0300 ---------------------------------------------------------------------- .../ignite/development/utils/package-info.java | 22 ++++++++++++++++++++ .../columnbased/caches/package-info.java | 22 ++++++++++++++++++++ .../org/apache/ignite/ml/util/package-info.java | 22 ++++++++++++++++++++ 3 files changed, 66 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/1f63b811/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/package-info.java ---------------------------------------------------------------------- diff --git a/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/package-info.java b/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/package-info.java new file mode 100644 index 0000000..d9018ed --- /dev/null +++ b/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/package-info.java @@ -0,0 +1,22 @@ +/* + * 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 description. --> + * Contains converter for WAL logs. + */ +package org.apache.ignite.development.utils; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/1f63b811/modules/ml/src/main/java/org/apache/ignite/ml/trees/trainers/columnbased/caches/package-info.java ---------------------------------------------------------------------- diff --git a/modules/ml/src/main/java/org/apache/ignite/ml/trees/trainers/columnbased/caches/package-info.java b/modules/ml/src/main/java/org/apache/ignite/ml/trees/trainers/columnbased/caches/package-info.java new file mode 100644 index 0000000..0a488ab --- /dev/null +++ b/modules/ml/src/main/java/org/apache/ignite/ml/trees/trainers/columnbased/caches/package-info.java @@ -0,0 +1,22 @@ +/* + * 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 description. --> + * Contains cache configurations for columnbased decision tree trainer with some related logic. + */ +package org.apache.ignite.ml.trees.trainers.columnbased.caches; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/1f63b811/modules/ml/src/main/java/org/apache/ignite/ml/util/package-info.java ---------------------------------------------------------------------- diff --git a/modules/ml/src/main/java/org/apache/ignite/ml/util/package-info.java b/modules/ml/src/main/java/org/apache/ignite/ml/util/package-info.java new file mode 100644 index 0000000..cc0d4bf --- /dev/null +++ b/modules/ml/src/main/java/org/apache/ignite/ml/util/package-info.java @@ -0,0 +1,22 @@ +/* + * 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 description. --> + * Contains some utils for ML module. + */ +package org.apache.ignite.ml.util; \ No newline at end of file
