Scala Library: scala.deprecatedInheritance
scala.deprecatedInheritance
class deprecatedInheritance extends Annotation with StaticAnnotationAn 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.
- Source
- Since
- 2.10
- See also
- scala.deprecatedOverriding
Instance Constructors From scala.deprecatedInheritance
new deprecatedInheritance(message: String = "", since: String = "")
- message
- the message to print during compilation if the class was sub-classed
- since
- a string identifying the first version in which inheritance was deprecated (defined at scala.deprecatedInheritance)
Full Source:
/* __ *\
** ________ ___ / / ___ 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.StaticAnnotationInterested in Scala?
I send out weekly, personalized emails with articles and conference talks.
Subscribe now.