blob: c5661001e52c7b64d578ebf18988ed75052dda77 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.constructor;
import org.yaml.snakeyaml.nodes.Node;
public interface Construct {
public Object construct(Node node);
public void construct2ndStep(Node node, Object object);
}