package org.simantics.db.layer0.variable; import org.simantics.db.ReadGraph; import org.simantics.db.Resource; import org.simantics.db.exception.DatabaseException; public class StandardGraphPropertyFactory implements GraphPropertyFactory { public static final StandardGraphPropertyFactory INSTANCE = new StandardGraphPropertyFactory(); @Override public Variable create(ReadGraph graph, Variable parent, Resource property) throws DatabaseException { return new StandardGraphPropertyVariable(graph, parent, property); } }