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

org.raml.jaxrs.codegen.model.GenericElementModel Maven / Gradle / Ivy

The newest version!
package org.raml.jaxrs.codegen.model;

import java.util.ArrayList;
import java.util.List;

import com.mulesoft.jaxrs.raml.annotation.model.IGenericElement;
import com.mulesoft.jaxrs.raml.annotation.model.ITypeParameter;

abstract public class GenericElementModel extends BasicModel implements IGenericElement {
	
	private List typeParameters = new ArrayList();

	public List getTypeParameters() {
		return typeParameters;
	}

	public void setTypeParameters(List typeParameters) {
		this.typeParameters = typeParameters;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy