
com.publicobject.misc.xml.PopProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glazedlists Show documentation
Show all versions of glazedlists Show documentation
Event-driven lists for dynamically filtered and sorted tables
The newest version!
package com.publicobject.misc.xml;
/**
* A processor that takes a newly discovered object and weaves
* it into an existing object.
*
* For example, this could be used to assign a newly discovered
* "id" string from an XML document to the id property of a business
* object.
*
*
The provided parameters are the two objects of interest -
* the newly discovered value and the current business object.
*
* @author jessewilson
*/
@FunctionalInterface
public interface PopProcessor {
void process(B baseObject, V value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy