Package plugins.Freetalk.SubscribedBoard

Examples of plugins.Freetalk.SubscribedBoard.BoardMessageLink.wasRead()


                  .addChild("a", "href", BoardPage.getFirstUnreadURI(board.getName()), Integer.toString(unreadMessageCount));
        else
          row.addChild("td", "class", "unread-count-0-cell", Integer.toString(unreadMessageCount));

          /* Latest message date, bold when the latest message is unread */
        row.addChild((latestMessage == null || latestMessage.wasRead()) ? "td" : "th", "class", "latest-message-cell",
            latestMessageDateString);
      }
    }

    if(boardCount == 0) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.