All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.impl.qat.QatStructuredElementNode Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/*******************************************************************
 * © 2020 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.impl.qat;

import com.sap.cds.reflect.CdsElement;
import com.sap.cds.reflect.CdsStructuredType;

public class QatStructuredElementNode extends QatStructuredNode {

	private final CdsElement element;

	public QatStructuredElementNode(QatNode parent, CdsElement structuredElement) {
		super(parent, structuredElement.getType().as(CdsStructuredType.class));
		this.element = structuredElement;
	}

	@Override
	public String name() {
		return element.getName();
	}

	public CdsElement element() {
		return element;
	}
	
	@Override
	public boolean inSource() {
		// TODO enable structured types source
		return false;
	}

	@Override
	public void accept(QatVisitor visitor) {
		visitor.visit(this);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy