Created
July 8, 2011 15:29
-
-
Save kmizu/1072089 to your computer and use it in GitHub Desktop.
An example of @BeanProperty annotation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.reflect.BeanProperty | |
trait Bean { | |
@BeanProperty var x: Int | |
} | |
class BeanImpl(@BeanProperty var x: Int) extends Bean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment