X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FPersistence.java;h=55e73f8af171897ba4ee943c51b318942f05847c;hb=953de352675a4ad91fe307d816a4ea7780c94274;hp=b111a3ee795028eb7a64c2428b495714a73169c5;hpb=e4f461213da0e30faf9e9eb2e97626abff320618;p=jSite.git diff --git a/src/de/todesbaum/util/freenet/fcp2/Persistence.java b/src/de/todesbaum/util/freenet/fcp2/Persistence.java index b111a3e..55e73f8 100644 --- a/src/de/todesbaum/util/freenet/fcp2/Persistence.java +++ b/src/de/todesbaum/util/freenet/fcp2/Persistence.java @@ -1,6 +1,5 @@ /* - * todesbaum-lib - - * Copyright (C) 2006 David Roden + * jSite - Persistence.java - Copyright © 2006–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 @@ -28,7 +27,7 @@ package de.todesbaum.util.freenet.fcp2; * is remembered as long as the node is running but not after restarts. * forever finally means that a request persists until it is * explicitely deleted. - * + * * @author David Roden <droden@gmail.com> * @version $Id$ * @see de.todesbaum.util.freenet.fcp2.ModifyPersistentRequest @@ -57,7 +56,7 @@ public final class Persistence { /** * Private constructor that creates a persistence option with the specified * name. - * + * * @param name * The name of the persistence option. */ @@ -67,7 +66,7 @@ public final class Persistence { /** * Returns the name of this persistence option. - * + * * @return The name of this persistence option */ public String getName() { @@ -77,9 +76,10 @@ public final class Persistence { /** * Returns a textual representation of this persistence option. The result * is identical to calling {@link #getName()}. - * + * * @return The name of this persistence option */ + @Override public String toString() { return name; }