Uses of Class
edu.wisc.ssec.mcidasv.servermanager.LocalAddeEntry

Packages that use LocalAddeEntry
edu.wisc.ssec.mcidasv.servermanager   
 

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

Fields in edu.wisc.ssec.mcidasv.servermanager declared as LocalAddeEntry
private  LocalAddeEntry LocalEntryShortcut.currentEntry
           
private  LocalAddeEntry LocalEntryEditor.currentEntry
           
static LocalAddeEntry LocalAddeEntry.INVALID_ENTRY
          Represents a "bad" local ADDE entry.
 

Fields in edu.wisc.ssec.mcidasv.servermanager with type parameters of type LocalAddeEntry
private  List<LocalAddeEntry> TabbedAddeManager.LocalAddeTableModel.entries
          Entries that currently populate the server manager.
static List<LocalAddeEntry> LocalAddeEntry.INVALID_ENTRIES
          Represents a "bad" collection of local ADDE entries.
private  List<LocalAddeEntry> TabbedAddeManager.selectedLocalEntries
           
 

Methods in edu.wisc.ssec.mcidasv.servermanager that return LocalAddeEntry
 LocalAddeEntry LocalAddeEntry.Builder.build()
           
protected  LocalAddeEntry TabbedAddeManager.LocalAddeTableModel.getEntryAtRow(int row)
          Returns the LocalAddeEntry at the given index.
private  LocalAddeEntry TabbedAddeManager.getSingleLocalSelection()
          If there is a single local dataset selected, this method will return that dataset.
static LocalAddeEntry EntryTransforms.readResolvLine(String line)
          Converts a String containing a "RESOLV.SRV" entry into a LocalAddeEntry.
 

Methods in edu.wisc.ssec.mcidasv.servermanager that return types with arguments of type LocalAddeEntry
private  Set<LocalAddeEntry> EntryStore.filterLocalEntriesByTemporaryStatus(boolean getTemporaryEntries)
           
 Set<LocalAddeEntry> EntryStore.getLocalEntries()
          Returns the complete Set of LocalAddeEntrys.
 Set<LocalAddeEntry> EntryStore.getPersistedLocalEntries()
          Returns the Set of LocalAddeEntries that will be saved between McIDAS-V sessions.
protected  List<LocalAddeEntry> TabbedAddeManager.LocalAddeTableModel.getSelectedEntries(int[] rows)
           
private  List<LocalAddeEntry> TabbedAddeManager.getSelectedLocalEntries()
          Gets the selected local ADDE entries.
 Set<LocalAddeEntry> EntryStore.getTemporaryLocalEntries()
           
private  Set<LocalAddeEntry> LocalEntryShortcut.pollWidgets()
          Poll the various UI components and attempt to construct valid ADDE entries based upon the information provided by the user.
private  Set<LocalAddeEntry> LocalEntryEditor.pollWidgets(boolean newEntry)
          Poll the various UI components and attempt to construct valid ADDE entries based upon the information provided by the user.
static Set<LocalAddeEntry> EntryTransforms.readResolvFile(String filename)
          Reads a "RESOLV.SRV" file and converts the contents into a Set of LocalAddeEntrys.
static Set<LocalAddeEntry> EntryTransforms.removeTemporaryEntriesFromResolvFile(String filename, Collection<LocalAddeEntry> entries)
           
 

Methods in edu.wisc.ssec.mcidasv.servermanager with parameters of type LocalAddeEntry
static String EntryTransforms.asResolvEntry(LocalAddeEntry entry)
          Converts a given LocalAddeEntry into a String that is suitable for including in a "RESOLV.SRV" file.
static int LocalAddeEntry.generateHashCode(LocalAddeEntry entry)
           
protected  int TabbedAddeManager.LocalAddeTableModel.getRowForEntry(LocalAddeEntry entry)
           
private  void LocalEntryShortcut.initComponents(LocalAddeEntry initEntry)
          Creates the editor dialog and initializes the various GUI components.
private  void LocalEntryEditor.initComponents(LocalAddeEntry initEntry)
          Creates the editor dialog and initializes the various GUI components.
 void TabbedAddeManager.showLocalEditor(LocalAddeEntry entry)
          Shows a local ADDE entry editor with the appropriate fields pre-populated, using the values from entry.
 

Method parameters in edu.wisc.ssec.mcidasv.servermanager with type arguments of type LocalAddeEntry
static void EntryTransforms.appendResolvFile(String filename, Collection<LocalAddeEntry> entries)
          Writes a Collection of LocalAddeEntrys to a "RESOLV.SRV" file.
static List<String> EntryTransforms.asResolvEntries(Collection<LocalAddeEntry> entries)
          Converts a Collection of LocalAddeEntrys into a List of Strings.
 void TabbedAddeManager.removeLocalEntries(Collection<LocalAddeEntry> entries)
          Removes the given local ADDE entries from the server manager GUI.
static Set<LocalAddeEntry> EntryTransforms.removeTemporaryEntriesFromResolvFile(String filename, Collection<LocalAddeEntry> entries)
           
private  void TabbedAddeManager.setSelectedLocalEntries(Collection<LocalAddeEntry> entries)
          Corresponds to the selected local ADDE entries in the GUI.
private static void EntryTransforms.writeResolvFile(String filename, boolean append, Collection<LocalAddeEntry> entries)
          Writes a Collection of LocalAddeEntrys to a "RESOLV.SRV" file.
static void EntryTransforms.writeResolvFile(String filename, Collection<LocalAddeEntry> entries)
          Writes a Collection of LocalAddeEntrys to a "RESOLV.SRV" file.
 

Constructors in edu.wisc.ssec.mcidasv.servermanager with parameters of type LocalAddeEntry
LocalEntryEditor(Frame parent, boolean modal, TabbedAddeManager manager, EntryStore store, LocalAddeEntry entry)
           
LocalEntryShortcut(Frame parent, boolean modal, TabbedAddeManager manager, EntryStore store, LocalAddeEntry entry)