org.javabuilders.IKeyValueConsumer Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.javabuilders;
import java.util.Set;
/**
* Indicates an object that consumes key values from a node in
* a build document
* @author Jacek Furmankiewicz
*/
public interface IKeyValueConsumer extends IApplicable {
/**
* @return The list of keys that the object can consume
*/
Set getConsumedKeys();
}