com.sap.cds.impl.qat.QatStructuredNode Maven / Gradle / Ivy
/*******************************************************************
* © 2020 SAP SE or an SAP affiliate company. All rights reserved. *
*******************************************************************/
package com.sap.cds.impl.qat;
import com.sap.cds.reflect.CdsStructuredType;
public abstract class QatStructuredNode extends QatNode {
private final CdsStructuredType rowType;
public QatStructuredNode(QatNode parent, CdsStructuredType rowType) {
super(parent);
this.rowType = rowType;
}
public CdsStructuredType rowType() {
return rowType;
}
}