summaryrefslogblamecommitdiff
path: root/src/library/scala/deprecatedInheritance.scala
blob: 7614a96f95f68b5cd076b001ca2d59d83b4fd408 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13

                                                                          
                                                                          









                                                                                              

                                                                                        



                                                                                              
                                          
   
                                                                                                               
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala

/** An annotation that designates that inheriting from a class is deprecated.
 *
 *  This is usually done to warn about a non-final class being made final in a future version.
 *  Sub-classing such a class then generates a warning. No warnings are generated if the
 *  subclass is in the same compilation unit.
 *
 *  @param  message the message to print during compilation if the class was sub-classed
 *  @param  since   a string identifying the first version in which inheritance was deprecated
 *  @since  2.10
 *  @see    [[scala.deprecatedOverriding]]
 */
class deprecatedInheritance(message: String = "", since: String = "") extends scala.annotation.StaticAnnotation