All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.intelie.pipes.PropertySink Maven / Gradle / Ivy

There is a newer version: 0.25.5
Show newest version
package net.intelie.pipes;

public interface PropertySink {
    // The visitor returned by this method will be used to visit this object's output.
    // - If this object outputs the same as its input, return visitor.
    // - If this object outputs a completely new object, return visitor.newScope().
    // - If this object evaluates a child scope (that is, the hat operator can go back to the parent),
    //   see PropertyVisitor.visitChildScope().
    // - If you are unsure, return visitor.unknown(this)

    PropertyVisitor visit(Scope parent, PropertyVisitor visitor);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy