Package plugins.Freetalk.exceptions

Examples of plugins.Freetalk.exceptions.NoSuchMessageListException


      case 1:
        final MessageList list = result.next();
        list.initializeTransient(mFreetalk);
        return list;
      case 0:
        throw new NoSuchMessageListException(id);
      default:
        throw new DuplicateMessageListException(id);
    }
  }
View Full Code Here


      case 1:
        final OwnMessageList list = result.next();
        list.initializeTransient(mFreetalk);
        return list;
      case 0:
        throw new NoSuchMessageListException(id);
      default:
        throw new DuplicateMessageListException(id);
    }
  }
View Full Code Here

    } catch(NoSuchObjectException e) {
      unavailableIndex = 0;
    }
   
    if(unavailableIndex < 0)
      throw new NoSuchMessageListException("");
   
    return unavailableIndex;
  }
View Full Code Here

   */
  public final synchronized long getIndexOfLatestAvailableMessageList() throws NoSuchMessageListException {
    checkedActivate(1);
   
    if(mHighestFetchedMessageListIndex == -1)
      throw new NoSuchMessageListException(null);
   
    return mHighestFetchedMessageListIndex;
  }
View Full Code Here

   */
  public final synchronized long getIndexOfOldestAvailableMessageList() throws NoSuchMessageListException {
    checkedActivate(1);
   
    if(mLowestFetchedMessageListIndex == -1)
      throw new NoSuchMessageListException(null);
   
    return mLowestFetchedMessageListIndex;
  }
View Full Code Here

  }
 
  public synchronized MessageList getMessageList() throws NoSuchMessageListException {
    checkedActivate(1);
    if(mMessageList == null)
      throw new NoSuchMessageListException("");
   
    mMessageList.initializeTransient(mFreetalk);
    return mMessageList;
  }
View Full Code Here

TOP

Related Classes of plugins.Freetalk.exceptions.NoSuchMessageListException

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.