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

overflowdb.EdgeLayoutInformation Maven / Gradle / Ivy

There is a newer version: 1.173
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy