information-system-model-do.../src/main/java/org/gcube/informationsystem/utils/documentation/model/entities/FacetDocumentationGenerator...

45 lines
1.3 KiB
Java
Raw Normal View History

2023-01-19 18:37:12 +01:00
package org.gcube.informationsystem.utils.documentation.model.entities;
2023-01-20 10:27:07 +01:00
import java.util.Set;
2023-01-20 16:44:56 +01:00
import org.gcube.informationsystem.base.reference.AccessType;
2023-02-07 14:09:25 +01:00
import org.gcube.informationsystem.discovery.knowledge.UsageKnowledge;
2023-01-20 10:27:07 +01:00
import org.gcube.informationsystem.types.reference.Type;
2023-01-20 16:44:56 +01:00
import org.gcube.informationsystem.types.reference.properties.LinkedEntity;
2023-01-20 10:27:07 +01:00
import org.gcube.informationsystem.types.reference.properties.PropertyDefinition;
2023-01-19 18:37:12 +01:00
import org.gcube.informationsystem.utils.documentation.rst.table.Table;
/**
* @author Luca Frosini (ISTI - CNR)
*/
2023-01-20 10:27:07 +01:00
public class FacetDocumentationGenerator extends EntityDocumentationGenerator {
2023-01-19 18:37:12 +01:00
2023-01-20 10:27:07 +01:00
public FacetDocumentationGenerator(Type type) {
2023-01-20 16:44:56 +01:00
super(type, AccessType.FACET);
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() {
Table table = new Table();
2023-01-20 10:27:07 +01:00
table.appendRow(getEntityHeadingRow());
Set<PropertyDefinition> properties = type.getProperties();
2023-01-20 17:49:41 +01:00
table = addPropertyRows(table, properties);
2023-01-20 16:44:56 +01:00
table.appendRow(getKnownUsageBoldRow());
table.appendRow(getSourceTargetBoldRow());
2023-01-22 19:44:32 +01:00
UsageKnowledge fk = UsageKnowledge.getFacetKnowledge();
2023-01-20 17:49:41 +01:00
Set<LinkedEntity> usage = fk.getUsage(type.getName());
2023-01-24 16:54:00 +01:00
addLinkedEntities(table, usage, NO_SPECIFIC_KNOWN_USAGE);
2023-01-20 16:44:56 +01:00
2023-01-19 18:37:12 +01:00
return table;
}
}