org.exparity.beans.Graph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exparity-bean Show documentation
Show all versions of exparity-bean Show documentation
A Java library of bean utilities for manipulating and inspecting Java classes implementing the Java Beans standard
package org.exparity.beans;
import static org.exparity.beans.InstanceInspector.graphInspector;
/**
* @author Stewart Bissett
*/
public class Graph extends Instance {
public static Graph graph(final Object instance) {
return new Graph(instance);
}
public Graph(final Object instance) {
super(graphInspector(), instance);
}
}