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

com.sap.cloud.sdk.service.csn2jpa.cds.model.CdsAnnotatable Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
/*******************************************************************************
 * * © 2018 SAP SE or an SAP affiliate company. All rights reserved. *
 ******************************************************************************/
package com.sap.cloud.sdk.service.csn2jpa.cds.model;

import java.util.Collections;
import java.util.List;

import com.google.common.collect.Lists;

public abstract class CdsAnnotatable implements CdsNode {

	private final List annotations = Lists.newArrayList();

	public List getAnnotations() {
		return Collections.unmodifiableList(annotations);
	}

	public void addAnnotations(List annotations) {
		this.annotations.addAll(annotations);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy