Package com.microstrategy.web.objects
Class WebChangeJournalEntriesImpl
- java.lang.Object
 - 
- com.microstrategy.web.objects.WebChangeJournalEntriesImpl
 
 
- 
- All Implemented Interfaces:
 WebChangeJournalEntries
public class WebChangeJournalEntriesImpl extends java.lang.Object implements WebChangeJournalEntries
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Remove all WebChangeJournalEntry objects in this collection.WebChangeJournalEntryget(int index)Returns the WebChangeJournalEntry in this collection according to the index (0-based).intsize()Returns the size of this collection. 
 - 
 
- 
- 
Method Detail
- 
size
public int size()
Description copied from interface:WebChangeJournalEntriesReturns the size of this collection.- Specified by:
 sizein interfaceWebChangeJournalEntries- Returns:
 - The size of this collection.
 
 
- 
get
public WebChangeJournalEntry get(int index) throws java.lang.IndexOutOfBoundsException
Description copied from interface:WebChangeJournalEntriesReturns the WebChangeJournalEntry in this collection according to the index (0-based).- Specified by:
 getin interfaceWebChangeJournalEntries- Parameters:
 index- The index of the WebChangeJournalEntry object in the collection (0-based).- Returns:
 - the WebChangeJournalEntry object in this collection according to the index.
 - Throws:
 java.lang.IndexOutOfBoundsException- Thrown when the index is less than 0 or greater or equals to the size of the collection.
 
- 
clear
public void clear()
Description copied from interface:WebChangeJournalEntriesRemove all WebChangeJournalEntry objects in this collection.- Specified by:
 clearin interfaceWebChangeJournalEntries
 
 - 
 
 -