X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FFreenetLinkPart.java;h=be3aef9d0c37ca38298829a37eeb98e7459a0876;hp=2efb3806dfe8aee9b860449ba99564e926ee3598;hb=a170ca4a7b77749951028f691ab126cd507a96fa;hpb=a448427ff29e5b39b42a6bdf50da551bf6665e32 diff --git a/src/main/java/net/pterodactylus/sone/text/FreenetLinkPart.java b/src/main/java/net/pterodactylus/sone/text/FreenetLinkPart.java index 2efb380..be3aef9 100644 --- a/src/main/java/net/pterodactylus/sone/text/FreenetLinkPart.java +++ b/src/main/java/net/pterodactylus/sone/text/FreenetLinkPart.java @@ -18,23 +18,57 @@ package net.pterodactylus.sone.text; /** - * 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 David ‘Bombe’ Roden */ public class FreenetLinkPart extends LinkPart { + /** Whether the link is trusted. */ private final boolean trusted; + /** + * Creates a new freenet link part. + * + * @param link + * The link of the part + * @param text + * The text of the part + * @param trusted + * {@code true} if the link is trusted, {@code false} otherwise + */ public FreenetLinkPart(String link, String text, boolean trusted) { this(link, text, text, trusted); } + /** + * Creates a new freenet link part. + * + * @param link + * The link of the part + * @param text + * The text of the part + * @param title + * The title of the part + * @param trusted + * {@code true} if the link is trusted, {@code false} otherwise + */ public FreenetLinkPart(String link, String text, String title, boolean trusted) { super(link, text, title); this.trusted = trusted; } + // + // ACCESSORS + // + + /** + * Returns whether the link is trusted. + * + * @return {@code true} if the link is trusted, {@code false} otherwise + */ public boolean isTrusted() { return trusted; }