/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

  1. package com.google.sitebricks.example;
  2. import com.google.sitebricks.Show;
  3. @Show("/Decorator.html")
  4. public abstract class DecoratorPage {
  5. public String getHello() {
  6. return "Hello (from the superclass)";
  7. }
  8. public abstract String getWorld();
  9. }