/sitebricks-acceptance-tests/src/main/java/com/google/sitebricks/example/DecoratorPage.java
http://github.com/dhanji/sitebricks · Java · 12 lines · 9 code · 3 blank · 0 comment · 0 complexity · e686758918339b84ceafdd450027a0f0 MD5 · raw file
- package com.google.sitebricks.example;
-
- import com.google.sitebricks.Show;
-
- @Show("/Decorator.html")
- public abstract class DecoratorPage {
- public String getHello() {
- return "Hello (from the superclass)";
- }
-
- public abstract String getWorld();
- }