fixed javadoc for java0

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-catalogue/gcubedatacatalogue-metadata-discovery@148893 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2017-05-19 09:58:55 +00:00
parent c3e3979a32
commit 3fd17d33e7
7 changed files with 29 additions and 17 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<classpath> <classpath>
<classpathentry including="**/*.java" kind="src" output="target/gcubedatacatalogue-metadata-discovery-3.0.0-SNAPSHOT/WEB-INF/classes" path="src/main/java"> <classpathentry including="**/*.java" kind="src" output="target/gcubedatacatalogue-metadata-discovery-3.1.0-SNAPSHOT/WEB-INF/classes" path="src/main/java">
<attributes> <attributes>
<attribute name="optional" value="true"/> <attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
@ -17,15 +17,15 @@
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes> <attributes>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="output" path="target/gcubedatacatalogue-metadata-discovery-3.0.0-SNAPSHOT/WEB-INF/classes"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/gcubedatacatalogue-metadata-discovery-3.1.0-SNAPSHOT/WEB-INF/classes"/>
</classpath> </classpath>

View File

@ -1,6 +1,6 @@
eclipse.preferences.version=1 eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.7 org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error

View File

@ -11,7 +11,7 @@ import java.io.Serializable;
* The Class MetadataProfile. * The Class MetadataProfile.
* *
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* Mar 24, 2017 * May 19, 2017
*/ */
public class MetadataProfile implements Serializable{ public class MetadataProfile implements Serializable{
@ -38,6 +38,7 @@ public class MetadataProfile implements Serializable{
* @param id the id * @param id the id
* @param name the name * @param name the name
* @param description the description * @param description the description
* @param metadataType the metadata type
*/ */
public MetadataProfile(String id, String name, String description, String metadataType) { public MetadataProfile(String id, String name, String description, String metadataType) {
@ -115,6 +116,8 @@ public class MetadataProfile implements Serializable{
} }
/** /**
* Gets the metadata type.
*
* @return the metadataType * @return the metadataType
*/ */
public String getMetadataType() { public String getMetadataType() {
@ -124,6 +127,8 @@ public class MetadataProfile implements Serializable{
/** /**
* Sets the metadata type.
*
* @param metadataType the metadataType to set * @param metadataType the metadataType to set
*/ */
public void setMetadataType(String metadataType) { public void setMetadataType(String metadataType) {

View File

@ -121,7 +121,7 @@ public class MetadataField implements Serializable{
/** /**
* Gets the category field qualified name. * Gets the category field qualified name.
* *
* If the Metadata Field belongs to a category, returns the qualified name: {@link CopyOfMetadataField#categoryRef} {@link Namespace#Separator}} fieldName; * If the Metadata Field belongs to a category, returns the qualified name: {@link MetadataField#categoryRef} {@link Namespace#Separator}} fieldName;
* Otherwise returns the fieldName * Otherwise returns the fieldName
* *
* @return the category q name * @return the category q name

View File

@ -11,12 +11,11 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlRootElement;
/** /**
* The Class NamespaceCategories. * The Class NamespaceCategories.
* *
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* Apr 26, 2017 * May 19, 2017
*/ */
@XmlRootElement(name="namespaces") @XmlRootElement(name="namespaces")
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@ -33,7 +32,9 @@ public class NamespaceCategories {
} }
/** /**
* @param namespaceCategories * Instantiates a new namespace categories.
*
* @param namespaceCategories the namespace categories
*/ */
public NamespaceCategories(List<NamespaceCategory> namespaceCategories) { public NamespaceCategories(List<NamespaceCategory> namespaceCategories) {
this.namespaceCategories = namespaceCategories; this.namespaceCategories = namespaceCategories;
@ -43,6 +44,8 @@ public class NamespaceCategories {
/** /**
* Gets the namespace categories.
*
* @return the namespaceCategories * @return the namespaceCategories
*/ */
public List<NamespaceCategory> getNamespaceCategories() { public List<NamespaceCategory> getNamespaceCategories() {
@ -54,6 +57,8 @@ public class NamespaceCategories {
/** /**
* Sets the namespace categories.
*
* @param namespaceCategories the namespaceCategories to set * @param namespaceCategories the namespaceCategories to set
*/ */
public void setNamespaceCategories(List<NamespaceCategory> namespaceCategories) { public void setNamespaceCategories(List<NamespaceCategory> namespaceCategories) {

View File

@ -15,11 +15,12 @@ import javax.xml.bind.annotation.XmlRootElement;
import org.gcube.datacatalogue.metadatadiscovery.Namespace; import org.gcube.datacatalogue.metadatadiscovery.Namespace;
/** /**
* The Class Namespace. * The Class NamespaceCategory.
* *
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* Apr 26, 2017 * May 19, 2017
*/ */
@XmlRootElement(name = "namespace") @XmlRootElement(name = "namespace")
@XmlAccessorType (XmlAccessType.FIELD) @XmlAccessorType (XmlAccessType.FIELD)

View File

@ -25,11 +25,12 @@ import org.slf4j.LoggerFactory;
import org.w3c.dom.Node; import org.w3c.dom.Node;
import org.xml.sax.InputSource; import org.xml.sax.InputSource;
/** /**
* The Class MedataFormatReader. * The Class MetadataFormatReader.
* *
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* @Jul 26, 2013 * May 19, 2017
*/ */
public class MetadataFormatReader { public class MetadataFormatReader {