code formatting

This commit is contained in:
Claudio Atzori 2020-05-04 19:18:12 +02:00
parent de5fbe325c
commit 405f495d54
1 changed files with 6 additions and 5 deletions

View File

@ -8,10 +8,10 @@ import java.util.stream.Collectors;
import java.util.stream.Stream; import java.util.stream.Stream;
/** /**
* Relation models any edge between two nodes in the OpenAIRE graph. It has a source id and a target id * Relation models any edge between two nodes in the OpenAIRE graph. It has a source id and a target id pointing to
* pointing to graph node identifiers and it is further characterised by the semantic of the link through the fields * graph node identifiers and it is further characterised by the semantic of the link through the fields relType,
* relType, subRelType and relClass. Provenance information is modeled according to the dataInfo element and collectedFrom, * subRelType and relClass. Provenance information is modeled according to the dataInfo element and collectedFrom, while
* while individual relationship types can provide extra information via the properties field. * individual relationship types can provide extra information via the properties field.
*/ */
public class Relation extends Oaf { public class Relation extends Oaf {
@ -26,7 +26,8 @@ public class Relation extends Oaf {
private String subRelType; private String subRelType;
/** /**
* Indicates the direction of the relationship, values include 'isSupplementTo', 'isSupplementedBy', 'merges, 'isMergedIn'. * Indicates the direction of the relationship, values include 'isSupplementTo', 'isSupplementedBy', 'merges,
* 'isMergedIn'.
*/ */
private String relClass; private String relClass;