X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scenegraph.profile%2Fsrc%2Forg%2Fsimantics%2Fscenegraph%2Fprofile%2FGroup.java;h=27d6a0dbcb79331a529d962970f7241c186f1411;hp=8d1a111244aea56b2caf6a63d0629882870b7411;hb=0d9b90834ce56b292c00b1a39850ed842c3e4d42;hpb=e5db6157fd8722c946613d4e46d7aaf6bfa92609 diff --git a/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/Group.java b/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/Group.java index 8d1a11124..27d6a0dbc 100644 --- a/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/Group.java +++ b/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/Group.java @@ -13,6 +13,7 @@ package org.simantics.scenegraph.profile; import org.simantics.db.RequestProcessor; import org.simantics.db.Resource; +import org.simantics.db.exception.DatabaseException; import org.simantics.db.procedure.SetListener; @@ -37,6 +38,6 @@ public interface Group { * objects. Usually one just delegates normal database listener * events to this listener. */ - void trackItems(RequestProcessor processor, Resource runtimeDiagram, SetListener listener); + void trackItems(RequestProcessor processor, Resource runtimeDiagram, SetListener listener) throws DatabaseException; }