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

com.sap.cds.impl.qat.QatSelectableNode 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 QatSelectableNode extends QatStructuredNode {

	private volatile String alias; // NOSONAR

	public QatSelectableNode(QatNode parent, CdsStructuredType rowType) {
		super(parent, rowType);
	}

	public void setAlias(String alias) {
		this.alias = alias;
	}

	public String alias() {
		return alias;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy