X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Fpages%2FPage.java;h=9a5c178a8d0a576422305094b7fe4383b5361e09;hb=3fb5d9ffc2fddb0c713abf22cfe6583fd1140813;hp=5e05fdcd56ed672f6ab654dbec07a1dda2dd5887;hpb=5778f9cb59077a91b5fd56da88d56f378f771b1b;p=gigi.git diff --git a/src/org/cacert/gigi/pages/Page.java b/src/org/cacert/gigi/pages/Page.java index 5e05fdcd..9a5c178a 100644 --- a/src/org/cacert/gigi/pages/Page.java +++ b/src/org/cacert/gigi/pages/Page.java @@ -8,7 +8,7 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.cacert.gigi.Language; -import org.cacert.gigi.output.Template; +import org.cacert.gigi.output.template.Template; /** * This class encapsulates a sub page of Gigi. A template residing nearby this @@ -27,8 +27,8 @@ public abstract class Page { } /** - * Retrives the default template (<className>.templ) which has already - * been loaded. + * Retrieves the default template (<className>.templ) which has + * already been loaded. * * @return the default template. */ @@ -44,7 +44,7 @@ public abstract class Page { * the request to handle. * @param resp * the response to write to - * @return true, iff the request is consumed and the default template should + * @return true, if the request is consumed and the default template should * not be applied. * @throws IOException * if output goes wrong. @@ -83,9 +83,9 @@ public abstract class Page { } /** - * Returns true, iff this page requires login. Default is true + * Returns true, if this page requires login. Default is true * - * @return iff the page needs login. + * @return if the page needs login. */ public boolean needsLogin() { return true;