Skip to content

Instantly share code, notes, and snippets.

@kmizu
Created July 8, 2011 15:29
Show Gist options
  • Save kmizu/1072089 to your computer and use it in GitHub Desktop.
Save kmizu/1072089 to your computer and use it in GitHub Desktop.
An example of @BeanProperty annotation.
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