Skip to content

Instantly share code, notes, and snippets.

@canonic-epicure
Created August 30, 2010 13:30
Show Gist options
  • Save canonic-epicure/557391 to your computer and use it in GitHub Desktop.
Save canonic-epicure/557391 to your computer and use it in GitHub Desktop.
Class('My.Attribute', {
meta : Joose.Meta.Class,
isa : Joose.Managed.Attribute,
methods : {
getSetter : function () {
},
getGetter : function () {
}
}
})
Class('Some.Class', {
has : {
attr : {
meta : My.Attribute,
is : 'rw'
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment