Merge branch 'release-0.9.6'
[Sone.git] / src / main / java / net / pterodactylus / sone / text / FreenetLinkPart.java
index 2efb380..493880f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - FreenetLinkPart.java - Copyright © 2011 David Roden
+ * Sone - FreenetLinkPart.java - Copyright © 2011–2016 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
 
 package net.pterodactylus.sone.text;
 
+import javax.annotation.Nonnull;
+
 /**
- * TODO
+ * {@link LinkPart} implementation that stores an additional attribute: if the
+ * link is an SSK or USK link and the post was created by an identity that owns
+ * the keyspace in question.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
@@ -26,11 +30,11 @@ public class FreenetLinkPart extends LinkPart {
 
        private final boolean trusted;
 
-       public FreenetLinkPart(String link, String text, boolean trusted) {
+       public FreenetLinkPart(@Nonnull String link, @Nonnull String text, boolean trusted) {
                this(link, text, text, trusted);
        }
 
-       public FreenetLinkPart(String link, String text, String title, boolean trusted) {
+       public FreenetLinkPart(@Nonnull String link, @Nonnull String text, @Nonnull String title, boolean trusted) {
                super(link, text, title);
                this.trusted = trusted;
        }