...
| Code Block |
|---|
class Book {
String title
}
Book.metaClass.'static'.create << { String title -> new Book(title:title) }
def b = Book.create("The Stand")
|
...
| Code Block |
|---|
class Book {
String title
}
Book.metaClass.'static'.create << { String title -> new Book(title:title) }
def b = Book.create("The Stand")
|