This is an automated email from the ASF dual-hosted git repository. sergeykamov pushed a commit to branch NLPCRAFT-472 in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
commit da8f52f16d0bfe5ef99fc4ac1eac87ec52e3ffb5 Author: Sergey Kamov <[email protected]> AuthorDate: Wed Dec 29 11:32:30 2021 +0300 WIP. --- .../entity/parser/semantic/NCSemanticElement.java | 4 ++++ .../parser/semantic/NCSemanticEntityParser.java | 28 ++++++++++++++++++++++ .../entity/parser/semantic/NCSemanticValue.java | 4 ++++ .../parser/semantic/NCSemanticValueLoader.java | 4 ++++ 4 files changed, 40 insertions(+) diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java new file mode 100644 index 0000000..cda4221 --- /dev/null +++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java @@ -0,0 +1,4 @@ +package org.apache.nlpcraft.nlp.entity.parser.semantic; + +public class NCSemanticElement { +} diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticEntityParser.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticEntityParser.java new file mode 100644 index 0000000..4b9816d --- /dev/null +++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticEntityParser.java @@ -0,0 +1,28 @@ +/* + * 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 + * + * https://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.nlpcraft.nlp.entity.parser.semantic; + +import java.io.File; + +public class NCSemanticEntityParser { + public NCSemanticEntityParser(File f) { + } + + public NCSemanticEntityParser() { + } +} diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticValue.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticValue.java new file mode 100644 index 0000000..fef2cde --- /dev/null +++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticValue.java @@ -0,0 +1,4 @@ +package org.apache.nlpcraft.nlp.entity.parser.semantic; + +public class NCSemanticValue { +} diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticValueLoader.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticValueLoader.java new file mode 100644 index 0000000..2709c31 --- /dev/null +++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticValueLoader.java @@ -0,0 +1,4 @@ +package org.apache.nlpcraft.nlp.entity.parser.semantic; + +public class NCSemanticValueLoader { +}
