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

com.sap.cds.impl.qat.QatStructuredNode 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.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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy