All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.sitebricks.example.DecoratorPage Maven / Gradle / Ivy

The newest version!
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy