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

io.pelle.mango.server.base.xml.XmlElementDescriptor Maven / Gradle / Ivy

package io.pelle.mango.server.base.xml;

import io.pelle.mango.client.base.vo.IBaseVO;

public class XmlElementDescriptor {
	
	private final Class voClass;
	
	private final boolean isList;
	
	private final boolean isReference;

	public XmlElementDescriptor(Class voClass, boolean isList, boolean isReference) {
		super();
		this.voClass = voClass;
		this.isList = isList;
		this.isReference = isReference;
	}

	public Class getVoClass() {
		return this.voClass;
	}

	public boolean isList() {
		return this.isList;
	}

	public boolean isReference() {
		return this.isReference;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy