use of org.springframework.ide.vscode.commons.yaml.schema.YTypeFactory.YSeqType in project sts4 by spring-projects.
the class ManifestYmlSchemaTest method getNestedProps.
private List<YTypedProperty> getNestedProps() {
YSeqType applications = (YSeqType) schema.getTopLevelType().getPropertiesMap().get("applications").getType();
AbstractType application = (AbstractType) applications.getDomainType();
return application.getProperties();
}
Aggregations