summaryrefslogtreecommitdiff
path: root/sources/scala/runtime/MetaAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scala/runtime/MetaAttribute.cs')
-rw-r--r--sources/scala/runtime/MetaAttribute.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/sources/scala/runtime/MetaAttribute.cs b/sources/scala/runtime/MetaAttribute.cs
deleted file mode 100644
index 28ab499bdd..0000000000
--- a/sources/scala/runtime/MetaAttribute.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2005, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id$
-
-using System;
-
-namespace scala.runtime
-{
- /// <summary>
- /// Stores additional meta-information about classes and members.
- /// Used to augment type information in classes from the scala
- /// library written in Java.
- /// </summary>
-
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Field
- | AttributeTargets.Constructor | AttributeTargets.Method,
- AllowMultiple = false, Inherited = false)]
- public class MetaAttribute : Attribute
- {
- // keeps a textual representation of the pico-style attributes
- // used in some classes of the runtime library
- public readonly string meta;
- public MetaAttribute(string meta)
- {
- this.meta = meta;
- }
- }
-}