* made changes to java reflection * removed redundant method makeSound in Animal abstract class * added project for play-framework article * added project for regex * changed regex project from own model to core-java * added project for routing in play * made changes to regex project * refactored code for REST API with Play project
21 lines
513 B
HTML
21 lines
513 B
HTML
@*
|
|
* This template takes a single argument, a String containing a
|
|
* message to display.
|
|
*@
|
|
@(message: String)
|
|
|
|
@*
|
|
* Call the `main` template with two arguments. The first
|
|
* argument is a `String` with the title of the page, the second
|
|
* argument is an `Html` object containing the body of the page.
|
|
*@
|
|
@main("Welcome to Play") {
|
|
|
|
@*
|
|
* Get an `Html` object by calling the built-in Play welcome
|
|
* template and passing a `String` message.
|
|
*@
|
|
@play20.welcome(message, style = "Java")
|
|
|
|
}
|