Package net.suberic.pooka.gui

Examples of net.suberic.pooka.gui.MessageProxy.needsRefresh()


  for (int i = 0 ; i < messageProxies.size(); i++) {
    mp = (MessageProxy) messageProxies.get(i);
    try {
      if (! mp.isLoaded())
        mp.loadTableInfo();
      if (mp.needsRefresh()) {
        mp.refreshMessage();
      }
      else if (! mp.matchedFilters()) {
        mp.matchFilters();
      }
View Full Code Here


    // now load each individual messageproxy.
    // and refresh each message.
    try {
      if (! mp.isLoaded())
      mp.loadTableInfo();
      if (mp.needsRefresh())
        mp.refreshMessage();
      else if (! mp.matchedFilters()) {
        mp.matchFilters();
    }
    } catch (Exception e) {
View Full Code Here

        synchronized(folderInfo.getFolderThread().getRunLock()) {
    try {
      folderInfo.getFolderThread().setCurrentActionName("Loading messages.");
      if (! mp.isLoaded())
        mp.loadTableInfo();
      if (mp.needsRefresh())
        mp.refreshMessage();
      else if (! mp.matchedFilters()) {
        mp.matchFilters();
      }
    } finally {
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.