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

NpsSDK.ComplexType Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package NpsSDK;

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

public class ComplexType {

	
	public ComplexType(){
		attributes = new ArrayList();		
	}
	
	private String typeName;
	private Boolean isArray;
	private Boolean isMandatory;
	private List attributes;
	
	
	public String getTypeName() {
		return typeName;
	}
	public void setTypeName(String typeName) {
		this.typeName = typeName;
	}
	
	
	public Boolean isArray() {
		return isArray;
	}
	public void setIsArray(Boolean isArray) {
		this.isArray = isArray;
	}
	
	public Boolean isMandatory() {
		return isMandatory;
	}
	public void setIsMandatory(Boolean isMandatory) {
		this.isMandatory = isMandatory;
	}
	
	public List getAttributes() {
		return attributes;
	}
	
	public void addAttribute(Attribute attribute){
		attributes.add(attribute);
	}
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy