Merge branch 'release-0.9.5'
[Sone.git] / src / main / java / net / pterodactylus / sone / text / FreenetLinkPart.java
1 /*
2  * Sone - FreenetLinkPart.java - Copyright © 2011–2016 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.text;
19
20 /**
21  * {@link LinkPart} implementation that stores an additional attribute: if the
22  * link is an SSK or USK link and the post was created by an identity that owns
23  * the keyspace in question.
24  *
25  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
26  */
27 public class FreenetLinkPart extends LinkPart {
28
29         /** Whether the link is trusted. */
30         private final boolean trusted;
31
32         /**
33          * Creates a new freenet link part.
34          *
35          * @param link
36          *            The link of the part
37          * @param text
38          *            The text of the part
39          * @param trusted
40          *            {@code true} if the link is trusted, {@code false} otherwise
41          */
42         public FreenetLinkPart(String link, String text, boolean trusted) {
43                 this(link, text, text, trusted);
44         }
45
46         /**
47          * Creates a new freenet link part.
48          *
49          * @param link
50          *            The link of the part
51          * @param text
52          *            The text of the part
53          * @param title
54          *            The title of the part
55          * @param trusted
56          *            {@code true} if the link is trusted, {@code false} otherwise
57          */
58         public FreenetLinkPart(String link, String text, String title, boolean trusted) {
59                 super(link, text, title);
60                 this.trusted = trusted;
61         }
62
63         //
64         // ACCESSORS
65         //
66
67         /**
68          * Returns whether the link is trusted.
69          *
70          * @return {@code true} if the link is trusted, {@code false} otherwise
71          */
72         public boolean isTrusted() {
73                 return trusted;
74         }
75
76 }