X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.export.core%2Fsrc%2Forg%2Fsimantics%2Fexport%2Fcore%2FExports.java;fp=bundles%2Forg.simantics.export.core%2Fsrc%2Forg%2Fsimantics%2Fexport%2Fcore%2FExports.java;h=c65eab53dc113fdb1fb2776185492f3577f57e7a;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.export.core/src/org/simantics/export/core/Exports.java b/bundles/org.simantics.export.core/src/org/simantics/export/core/Exports.java new file mode 100644 index 000000000..c65eab53d --- /dev/null +++ b/bundles/org.simantics.export.core/src/org/simantics/export/core/Exports.java @@ -0,0 +1,23 @@ +package org.simantics.export.core; + +import org.simantics.export.core.impl.ExportExtensionPointImpl; + + +/** + * Facade class for Export actions. + * + * @author toni.kalajainen@semantum.fi + */ +public class Exports { + + /** + * Create a light-weight non-shared, non-monitored registery instance of + * Export Extension Point + * + * @return new export registry + */ + public static ExportExtensionPoint createExtensionPoint() { + return new ExportExtensionPointImpl(); + } + +}