Package plugins.Freetalk

Examples of plugins.Freetalk.MessageURI


                    }
                   
                  // FIXME: When replying to forked threads, this code will always sent the replies to the original thread. We need to find a way
                  // to figure out whether the user wanted to reply to a forked thread - does NNTP pass a thread ID?
                   
                    MessageURI parentMessageURI = null;
                    if (parentMessage != null) {
                        parentMessageURI = parentMessage.isThread() ? parentMessage.getURI() : parentMessage.getThreadURI();
                    }

                    final HashSet<String> boardSet = new HashSet<String>(parser.getBoards());
View Full Code Here


        if (mRequest.isPartSet("CreatePreview")) {
          mContentNode.addChild(new PreviewPane(mWebInterface, mOwnIdentity, mRequest, replySubject, replyText).get());
          makeNewReplyPage(replySubject, replyText, selectedMessageRating);
        }
        else {
        MessageURI parentThreadURI;

        try {
          parentThreadURI = mParentThread.getMessage().getURI();
        }
        catch(MessageNotFetchedException e) {
View Full Code Here

TOP

Related Classes of plugins.Freetalk.MessageURI

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.