Code Examples for

Programming in Scala

Return to chapter index

25 Annotations

  • 25.1 Why have annotations?
  • 25.2 Syntax of annotations
  • 25.3 Standard annotations
  • 25.4 Conclusion
  • 25.1 Why have annotations?

    25.2 Syntax of annotations


    // In file annotations/Misc.scala @deprecated def bigMistake() = //...
    // In file annotations/Misc.scala @deprecated class QuickAndDirty { //... }
    // In file annotations/Misc.scala (e: @unchecked) match { // non-exhaustive cases... }
    @cool val normal = "Hello" @coolerThan(normal) val fonzy = "Heeyyy"

    25.3 Standard annotations


    @deprecated def bigMistake() = //...

    25.4 Conclusion

    For more information about Programming in Scala (the "Stairway Book"), please visit:

    http://www.artima.com/shop/programming_in_scala

    and:

    http://booksites.artima.com/programming_in_scala

    Copyright © 2007-2008 Artima, Inc. All rights reserved.

    Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.