Uses of Interface
edu.wisc.ssec.mcidasv.servermanager.AddeEntry

Packages that use AddeEntry
edu.wisc.ssec.mcidasv.servermanager   
edu.wisc.ssec.mcidasv.util.trie   
 

Uses of AddeEntry in edu.wisc.ssec.mcidasv.servermanager
 

Classes in edu.wisc.ssec.mcidasv.servermanager that implement AddeEntry
 class LocalAddeEntry
           
 class RemoteAddeEntry
           
 

Fields in edu.wisc.ssec.mcidasv.servermanager with type parameters of type AddeEntry
private  Map<AddeEntry,JCheckBox> AddePreferences.AddePrefConglomeration.entryToggles
           
private  List<AddeEntry> EntryStore.lastAdded
          The last AddeEntrys added to the manager.
private  PatriciaTrie<String,AddeEntry> EntryStore.trie
          The ADDE servers known to McIDAS-V.
 

Methods in edu.wisc.ssec.mcidasv.servermanager that return types with arguments of type AddeEntry
protected static Set<AddeEntry> EntryTransforms.convertAddeServerXml(Element root, AddeEntry.EntrySource source)
          Converts the XML contents of IdvResourceManager.RSC_ADDESERVER to a Set of RemoteAddeEntrys.
private  Set<AddeEntry> EntryStore.extractPreferencesEntries(IdvObjectStore store)
          Returns the AddeEntrys stored in the user's preferences.
private  Set<AddeEntry> EntryStore.extractResourceEntries(AddeEntry.EntrySource source, XmlResourceCollection xmlResources)
          Process all of the "IDV-style" XML resources for a given "source".
private  Set<AddeEntry> EntryStore.extractUserEntries(XmlResourceCollection xmlResources)
          Process all of the "user" XML resources.
 Set<AddeEntry> EntryStore.getEntrySet()
          Returns the complete Set of AddeEntrys.
 Map<AddeEntry,JCheckBox> AddePreferences.AddePrefConglomeration.getEntryToggles()
           
 List<AddeEntry> EntryStore.getLastAdded()
           
 List<AddeEntry> EntryStore.getLastAddedByType(AddeEntry.EntryType type)
          Searches the newest entries for the entries of the given EntryType.
 List<AddeEntry> EntryStore.getLastAddedByTypes(EnumSet<AddeEntry.EntryType> types)
           
 Set<AddeEntry> EntryStore.getPersistedEntrySet()
           
 Set<AddeEntry> EntryStore.getVerifiedEntries(AddeEntry.EntryType type)
          Returns the Set of AddeEntrys that are known to work (for a given AddeEntry.EntryType of entries).
 Map<AddeEntry.EntryType,Set<AddeEntry>> EntryStore.getVerifiedEntriesByTypes()
           
private static Set<AddeEntry> EntryStore.removeDeletedSystemEntries(Collection<? extends AddeEntry> entries, Collection<? extends AddeEntry> systemEntries)
          Searches entries for AddeEntry objects with two characteristics: the object source is EntrySource#System the object is not in systemEntries The intent behind this method is to safely remove "system" entries that have been stored to a user's preferences.
 List<AddeEntry> EntryStore.searchWithPrefix(String prefix)
          Search the server manager for entries that match prefix.
 

Methods in edu.wisc.ssec.mcidasv.servermanager with parameters of type AddeEntry
 void EntryStore.addEntry(AddeEntry entry)
          Adds a single AddeEntry to EntryStore.trie.
static boolean EntryStore.isInvalidEntry(AddeEntry entry)
          Determine the validity of a given AddeEntry.
 boolean EntryStore.removeEntry(AddeEntry entry)
          Removes a single AddeEntry from the set of available entries.
 

Method parameters in edu.wisc.ssec.mcidasv.servermanager with type arguments of type AddeEntry
 void EntryStore.addEntries(Collection<? extends AddeEntry> newEntries)
          Adds a Set of AddeEntrys to EntryStore.trie.
static Set<AddeServer> EntryTransforms.convertMcvServers(Collection<AddeEntry> entries)
           
static Set<AddeEntry.EntryType> EntryTransforms.findEntryTypes(Collection<? extends AddeEntry> entries)
           
private static void EntryStore.putEntries(PatriciaTrie<String,AddeEntry> trie, Collection<? extends AddeEntry> newEntries)
          Adds AddeEntry objects to a given PatriciaTrie.
private static void EntryStore.putEntries(PatriciaTrie<String,AddeEntry> trie, Collection<? extends AddeEntry> newEntries)
          Adds AddeEntry objects to a given PatriciaTrie.
private static Set<AddeEntry> EntryStore.removeDeletedSystemEntries(Collection<? extends AddeEntry> entries, Collection<? extends AddeEntry> systemEntries)
          Searches entries for AddeEntry objects with two characteristics: the object source is EntrySource#System the object is not in systemEntries The intent behind this method is to safely remove "system" entries that have been stored to a user's preferences.
private static Set<AddeEntry> EntryStore.removeDeletedSystemEntries(Collection<? extends AddeEntry> entries, Collection<? extends AddeEntry> systemEntries)
          Searches entries for AddeEntry objects with two characteristics: the object source is EntrySource#System the object is not in systemEntries The intent behind this method is to safely remove "system" entries that have been stored to a user's preferences.
 boolean EntryStore.removeEntries(Collection<? extends AddeEntry> removedEntries)
           
 void EntryStore.replaceEntries(Collection<? extends AddeEntry> oldEntries, Collection<? extends AddeEntry> newEntries)
          Replaces the AddeEntrys within trie with the contents of newEntries.
 void EntryStore.replaceEntries(Collection<? extends AddeEntry> oldEntries, Collection<? extends AddeEntry> newEntries)
          Replaces the AddeEntrys within trie with the contents of newEntries.
 

Constructor parameters in edu.wisc.ssec.mcidasv.servermanager with type arguments of type AddeEntry
AddePreferences.AddePrefConglomeration(String name, PreferenceManager entryListener, JPanel entryPanel, Map<AddeEntry,JCheckBox> entryToggles)
           
 

Uses of AddeEntry in edu.wisc.ssec.mcidasv.util.trie
 

Methods in edu.wisc.ssec.mcidasv.util.trie with parameters of type AddeEntry
 int AddeEntryKeyAnalyzer.bitIndex(AddeEntry key, int keyStart, int keyLength, AddeEntry found, int foundStart, int foundLength)
           
 int AddeEntryKeyAnalyzer.compare(AddeEntry o1, AddeEntry o2)
           
 boolean AddeEntryKeyAnalyzer.isBitSet(AddeEntry key, int keyLength, int bitIndex)
           
 boolean AddeEntryKeyAnalyzer.isPrefix(AddeEntry prefix, int offset, int length, AddeEntry key)
           
 int AddeEntryKeyAnalyzer.length(AddeEntry key)
           
private static String AddeEntryKeyAnalyzer.valAtIdx(int idx, AddeEntry e)