net.sf.juffrou.xml.internal.config.JuffrouXmlPreferences Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of juffrou-xml Show documentation
Show all versions of juffrou-xml Show documentation
Juffrou XML is simplified marshaling for java beans into XML and back.
package net.sf.juffrou.xml.internal.config;
public class JuffrouXmlPreferences {
private boolean collectionWithSizeAttribute = false;
public boolean isCollectionWithSizeAttribute() {
return collectionWithSizeAttribute;
}
public void setCollectionWithSizeAttribute(boolean collectionWithSizeAttribute) {
this.collectionWithSizeAttribute = collectionWithSizeAttribute;
}
}