org.milyn.edisax.model.internal.Field Maven / Gradle / Ivy
/*
Milyn - Copyright (C) 2006 - 2010
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License (version 2.1) as published by the Free Software
Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details:
http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.edisax.model.internal;
import java.util.ArrayList;
import java.util.List;
public class Field extends ValueNode implements ContainerNode {
private List component;
private Boolean required;
private Boolean truncatable;
public Field() {
}
public Field(String xmltag, Boolean required) {
super(xmltag);
this.required = required;
this.truncatable = true;
}
public Field(String xmltag, Boolean required, Boolean truncatable) {
super(xmltag);
this.required = required;
this.truncatable = truncatable;
}
public List getComponents() {
if (component == null) {
component = new ArrayList();
}
return this.component;
}
public Field addComponent(Component component) {
getComponents().add(component);
return this;
}
public boolean isRequired() {
return required != null && required;
}
public void setRequired(Boolean value) {
this.required = value;
}
public boolean isTruncatable() {
return truncatable != null && truncatable;
}
public void setTruncatable(Boolean value) {
this.truncatable = value;
}
}