overflowdb.EdgeLayoutInformation Maven / Gradle / Ivy
package overflowdb;
import java.util.Set;
/**
* Edges only exist as a virtual concept in OverflowDbNode.
* This is used to instantiate NodeLayoutInformation.
*/
public class EdgeLayoutInformation {
public final String label;
public final Set propertyKeys;
public EdgeLayoutInformation(String label, Set propertyKeys) {
this.label = label;
this.propertyKeys = propertyKeys;
}
}