
org.fuwjin.jon.CollectionTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jon Show documentation
Show all versions of jon Show documentation
A POJO serialization framework
package org.fuwjin.jon;
public class CollectionTask implements Task {
private final Container c;
public CollectionTask(final Container c) {
this.c = c;
}
@Override
public void resolve(final Object value) throws Exception {
c.add(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy