*/
public class PostPart implements Part {
- /** The post this part refers to. */
private final Post post;
+ private final boolean usesDeprecatedLink;
- /**
- * Creates a new post part.
- *
- * @param post
- * The referenced post
- */
public PostPart(Post post) {
- this.post = post;
+ this(post, false);
}
- //
- // ACCESSORS
- //
+ public PostPart(Post post, boolean usesDeprecatedLink) {
+ this.post = post;
+ this.usesDeprecatedLink = usesDeprecatedLink;
+ }
- /**
- * Returns the post referenced by this part.
- *
- * @return The post referenced by this part
- */
public Post getPost() {
return post;
}
- //
- // PART METHODS
- //
+ public boolean usesDeprecatedLink() {
+ return usesDeprecatedLink;
+ }
- /**
- * {@inheritDoc}
- */
@Override
public String getText() {
return post.getText();
if (linkType == LinkType.POST) {
Optional<Post> post = postProvider.getPost(link.substring(7));
if (post.isPresent()) {
- parts.add(new PostPart(post.get()));
+ parts.add(new PostPart(post.get(), link.substring(7).equals(post.get().getInternalId())));
} else {
parts.add(new PlainTextPart(link));
}