Package tahrir.io.net.broadcasts.filters

Examples of tahrir.io.net.broadcasts.filters.AuthorFilter


    final BroadcastMessageDisplayPage followingPostPage = new BroadcastMessageDisplayPage(
        new FollowingFilter(this.node.mbClasses.identityStore),this);
    final BroadcastMessageDisplayPage mentionsPostPage = new BroadcastMessageDisplayPage(
                new MentionsFilter(node.mbClasses.identityStore), this);
    final BroadcastMessageDisplayPage myPostsPage = new BroadcastMessageDisplayPage(
        new AuthorFilter(this.node.mbClasses.identityStore), this);
        final ContactBookDisplayPage contactBookDisplayPage = new ContactBookDisplayPage(this);
        final SettingsDisplayPage settingsDisplayPage = new SettingsDisplayPage(this);

      tabbedPane.addTab("All", unfilteredPostPage.getContent());
        tabbedPane.addTab("Following", followingPostPage.getContent());
View Full Code Here


  @Override
  public void actionPerformed(final ActionEvent arg0) {
        final Set<UserIdentity> authors = Sets.newHashSet();
        if(authorIdentity.isPresent())
        authors.add(authorIdentity.get());
    final BroadcastMessageDisplayPage mbDisplayPage = new BroadcastMessageDisplayPage(new AuthorFilter(mainWindow.getNode().mbClasses.identityStore), mainWindow);
    setContents(mbDisplayPage.getContent());
    super.actionPerformed(arg0);
  }
View Full Code Here

TOP

Related Classes of tahrir.io.net.broadcasts.filters.AuthorFilter

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.