summaryrefslogtreecommitdiff
path: root/src/msil/ch/epfl/lamp/compiler/msil/ICustomAttributeProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/msil/ch/epfl/lamp/compiler/msil/ICustomAttributeProvider.java')
-rw-r--r--src/msil/ch/epfl/lamp/compiler/msil/ICustomAttributeProvider.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/msil/ch/epfl/lamp/compiler/msil/ICustomAttributeProvider.java b/src/msil/ch/epfl/lamp/compiler/msil/ICustomAttributeProvider.java
new file mode 100644
index 0000000000..4eafc37ef3
--- /dev/null
+++ b/src/msil/ch/epfl/lamp/compiler/msil/ICustomAttributeProvider.java
@@ -0,0 +1,58 @@
+/*
+ * System.Reflection-like API for access to .NET assemblies (DLL & EXE)
+ */
+
+// $Id$
+
+package ch.epfl.lamp.compiler.msil;
+
+/**
+ * Provides custom attributes for reflection objects that support them.
+ *
+ * @author Nikolay Mihaylov
+ * @version 1.0
+ */
+public interface ICustomAttributeProvider {
+
+ //##########################################################################
+ // interface method definitions
+
+ /** Returns an array of all of the custom attributes
+ * defined on this member, excluding named attributes,
+ * or an empty array if there are no custom attributes.
+ *
+ * @param inherit - When true, look up the hierarchy chain
+ * for the inherited custom attribute.
+ * @return - An array of Objects representing custom attributes,
+ * or an empty array.
+ */
+ public Object[] GetCustomAttributes(boolean inherit);
+
+
+ /** Returns an array of custom attributes defined on this member,
+ * identified by type, or an empty array
+ * if there are no custom attributes of that type.
+ *
+ * @param attributeType - The type of the custom attributes.
+ * @param inherit - When true, look up the hierarchy chain
+ * for the inherited custom attribute.
+ * @return - An array of Objects representing custom attributes,
+ * or an empty array.
+ */
+ public Object[] GetCustomAttributes(Type attributeType, boolean inherit);
+
+
+ /** Indicates whether one or more instance of attributeType
+ * is defined on this member
+ *
+ * @param attributeType - The type of the custom attributes
+ * @param inherit - When true, look up the hierarchy chain
+ * for the inherited custom attribute.
+ * @return - true if the attributeType is defined on this member;
+ * false otherwise.
+ */
+ public boolean IsDefined(Type attributeType, boolean inherit);
+
+ //##########################################################################
+
+} // interface ICustomAttributeProvider