[326871] - [QVTo] Be able to add blackbox java libraries in standalone
environment
diff --git a/plugins/org.eclipse.m2m.qvt.oml/src/org/eclipse/m2m/qvt/oml/blackbox/java/Module.java b/plugins/org.eclipse.m2m.qvt.oml/src/org/eclipse/m2m/qvt/oml/blackbox/java/Module.java
new file mode 100644
index 0000000..ae94337
--- /dev/null
+++ b/plugins/org.eclipse.m2m.qvt.oml/src/org/eclipse/m2m/qvt/oml/blackbox/java/Module.java
@@ -0,0 +1,34 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2014 Borland Software Corporation and others.
+ * 
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *   
+ * Contributors:
+ *     Borland Software Corporation - initial API and implementation
+ *     Christopher Gerking - bug 326871
+ *******************************************************************************/
+package org.eclipse.m2m.qvt.oml.blackbox.java;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * Indicates that the annotated Java class is a QVT <code>Module</code>.
+ * @since 3.4
+ */
+@Retention(RetentionPolicy.RUNTIME)	
+@Target(ElementType.TYPE)
+public @interface Module {
+		
+	/**
+	 * The package namespace URIs accessed by the signature types of the annotated operation.
+	 * @return the package namespace URIs
+	 */
+	String[] packageURIs() default {};
+
+}
\ No newline at end of file