X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fpage%2FPageToadletFactory.java;h=ef5de690a18be2b08b7d777ea0002d684a6cfb4f;hp=bd0adb9ce5f1cf4709800cde588e8cf9e11f537f;hb=a47643aed43d118ca68044f95451bb5374cdb332;hpb=aa94dcb712392b69cb431d1637e4948688d15791 diff --git a/src/main/java/net/pterodactylus/sone/web/page/PageToadletFactory.java b/src/main/java/net/pterodactylus/sone/web/page/PageToadletFactory.java index bd0adb9..ef5de69 100644 --- a/src/main/java/net/pterodactylus/sone/web/page/PageToadletFactory.java +++ b/src/main/java/net/pterodactylus/sone/web/page/PageToadletFactory.java @@ -1,5 +1,5 @@ /* - * Sone - PageToadletFactory.java - Copyright © 2010 David Roden + * Sone - PageToadletFactory.java - Copyright © 2010–2012 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,12 +17,13 @@ package net.pterodactylus.sone.web.page; +import net.pterodactylus.util.web.Page; import freenet.client.HighLevelSimpleClient; /** * Factory that creates {@link PageToadlet}s using a given * {@link HighLevelSimpleClient}. - * + * * @author David ‘Bombe’ Roden */ public class PageToadletFactory { @@ -35,7 +36,7 @@ public class PageToadletFactory { /** * Creates a new {@link PageToadlet} factory. - * + * * @param highLevelSimpleClient * The client to use when creating the toadlets * @param pathPrefix @@ -49,26 +50,26 @@ public class PageToadletFactory { /** * Creates a {@link PageToadlet} that wraps the given page and does not * appear in the node’s menu. - * + * * @param page * The page to wrap * @return The toadlet wrapped around the page */ - public PageToadlet createPageToadlet(Page page) { + public PageToadlet createPageToadlet(Page page) { return createPageToadlet(page, null); } /** * Creates a {@link PageToadlet} that wraps the given page and appears in * the node’s menu under the given name. - * + * * @param page * The page to wrap * @param menuName * The name of the menu item * @return The toadlet wrapped around the page */ - public PageToadlet createPageToadlet(Page page, String menuName) { + public PageToadlet createPageToadlet(Page page, String menuName) { return new PageToadlet(highLevelSimpleClient, menuName, page, pathPrefix); }