information-system-model-do.../src/main/java/org/gcube/informationsystem/utils/documentation/model/relations/IsRelatedToDocumentation.java

38 lines
1017 B
Java
Raw Normal View History

2023-01-19 18:37:12 +01:00
package org.gcube.informationsystem.utils.documentation.model.relations;
2023-01-20 17:49:41 +01:00
import java.util.Set;
2023-01-20 16:44:56 +01:00
import org.gcube.informationsystem.base.reference.AccessType;
2023-01-20 10:27:07 +01:00
import org.gcube.informationsystem.types.reference.Type;
2023-01-20 17:49:41 +01:00
import org.gcube.informationsystem.types.reference.properties.LinkedEntity;
2023-01-19 18:37:12 +01:00
import org.gcube.informationsystem.utils.documentation.rst.table.Table;
/**
* @author Luca Frosini (ISTI - CNR)
*/
2023-02-08 16:53:29 +01:00
public class IsRelatedToDocumentation extends RelationDocumentation {
2023-01-19 18:37:12 +01:00
2023-02-08 16:53:29 +01:00
public IsRelatedToDocumentation(Type type) {
2023-01-20 16:44:56 +01:00
super(type, AccessType.IS_RELATED_TO);
2023-01-22 19:44:32 +01:00
int level = 1;
if(type.getName().compareTo(requiredType.getName())!=0) {
++level;
}
setLevel(level);
2023-01-19 18:37:12 +01:00
}
@Override
protected Table getTable() {
2023-01-20 17:49:41 +01:00
Table table = super.getTable();
table.appendRow(getKnownUsageBoldRow());
2023-01-22 19:44:32 +01:00
table.appendRow(getSourceTargetBoldRow());
2023-02-07 14:34:44 +01:00
Set<LinkedEntity> resources = resourceKnowledge.getUsage(type.getName());
2023-01-24 16:54:00 +01:00
addLinkedEntities(table, resources, NO_SPECIFIC_KNOWN_USAGE);
2023-01-20 17:49:41 +01:00
2023-01-19 18:37:12 +01:00
return table;
}
}