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

org.aml.raml2java.ClassCustomizerParameters Maven / Gradle / Ivy

There is a newer version: 0.11
Show newest version
package org.aml.raml2java;

import java.util.ArrayList;

import org.aml.typesystem.AbstractType;

import com.sun.codemodel.JDefinedClass;

public class ClassCustomizerParameters {

	protected final JavaWriter writer;	
	protected final JDefinedClass clazz;
	protected final AbstractType type;
	protected final ArrayListprops;
	
	public ClassCustomizerParameters(JavaWriter writer, JDefinedClass clazz, AbstractType type,
			ArrayList props) {
		super();
		this.writer = writer;
		this.clazz = clazz;
		this.type = type;
		this.props = props;
	}
	
	public JavaWriter getWriter() {
		return writer;
	}
	public JDefinedClass getClazz() {
		return clazz;
	}
	public ArrayList getProps() {
		return props;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy