Uses of Class
edu.nrao.sss.model.source.Source

Packages that use Source
edu.nrao.sss.model.project Project object model. 
edu.nrao.sss.model.project.scan Scan object model. 
edu.nrao.sss.model.proposal Proposal object model. 
edu.nrao.sss.model.resource Resource object model. 
edu.nrao.sss.model.resource.vla VLA hardware classes. 
edu.nrao.sss.model.source Astronomical source object model. 
edu.nrao.sss.model.source.experiment   
edu.nrao.sss.model.source.parser Classes that create source catalogs from text input. 
 

Uses of Source in edu.nrao.sss.model.project
 

Methods in edu.nrao.sss.model.project that return types with arguments of type Source
 Map<ScanMode,Set<Source>> CalibratorSelector.findCalibratorsFor(Object observationType, SkyPosition sourcePosition)
          Returns a collection of calibrators that are suitable for the given observational parameters.
 Set<Source> CalibratorSelector.findCalibratorsFor(ScanMode observationMode, Object observationType, SkyPosition sourcePosition)
          Returns a collection of calibrators that are suitable for the given observational parameters.
 Set<Source> SchedulingBlock.getSources()
          Returns the sources to be observed by this scheduling block at the current time.
 Set<Source> SchedulingBlock.getSources(Date dateTime)
          Returns the sources to be observed by this scheduling block at dateTime.
 

Uses of Source in edu.nrao.sss.model.project.scan
 

Methods in edu.nrao.sss.model.project.scan that return Source
 Source Scan.getSource()
          Returns the source to use at the current time.
 Source SwitchSetting.getSource()
          Returns the source to use at the current time.
 Source Scan.getSource(Date dateTime)
          Returns the source to use at the given time.
 Source SwitchSetting.getSource(Date dateTime)
          Returns the source to use at the given time.
 

Methods in edu.nrao.sss.model.project.scan that return types with arguments of type Source
 Set<Source> SwitchingScan.getSources(Date dateTime)
          Returns the set of all sources used by this scan.
 

Uses of Source in edu.nrao.sss.model.proposal
 

Methods in edu.nrao.sss.model.proposal that return Source
 Source SessionPair.getSource()
          Returns this pair's source.
 

Methods in edu.nrao.sss.model.proposal that return types with arguments of type Source
 Set<Source> Proposal.getSourceClones()
          Returns a set that contains one copy of each of the sources in this proposal.
 Set<Source> Proposal.getSources()
           
 

Methods in edu.nrao.sss.model.proposal with parameters of type Source
 void Proposal.addSource(Source s)
           
 void Proposal.deleteSource(Source s)
           
 void SessionPair.setSource(Source newSource)
          Sets this pair's source.
 

Uses of Source in edu.nrao.sss.model.resource
 

Methods in edu.nrao.sss.model.resource with parameters of type Source
 LinearVelocity TelescopeType.calcVelocityRelativeTo(Source source, Date dateTime)
          Returns the velocity of this telescope toward or away from an object in space at the given point in time.
 

Uses of Source in edu.nrao.sss.model.resource.vla
 

Methods in edu.nrao.sss.model.resource.vla with parameters of type Source
 Frequency VlaConfiguration.getCentralSkyFrequency(IFPair ifPair, Source source, Date dateTime)
          Deprecated. do not use; see VlaConfiguration.getCentralSkyFrequency(IFPair, DopplerTracker, Date)
 

Uses of Source in edu.nrao.sss.model.source
 

Methods in edu.nrao.sss.model.source that return Source
 Source Source.clone()
          Returns a source that is equal to this one.
 Source SourceGroup.findSourceById(long id)
           
 Source SourceProvider.findSourceById(long id)
          Returns the Source with the given id, if any.
 Source SourceCatalog.findSourceById(long id)
           
static Source Source.fromXml(Reader reader)
          Creates a new source based on the XML data read from reader.
static Source Source.fromXml(String xmlFile)
          Creates a new source from the XML data in the given file.
 Source SourceCatalogEntry.get(Date pointInTime)
          Returns the source associated with this entry as of the given point in time.
 Source Source.get(Date pointInTime)
           
 Source SourceBuilder.makeSource(String name)
           
 Source SourceLookupTable.put(Date key, Source value)
           
 Source SourceLookupTable.remove(Date key)
           
 

Methods in edu.nrao.sss.model.source that return types with arguments of type Source
 List<Source> SourceGroup.findSourceByName(String name)
           
 List<Source> SourceProvider.findSourceByName(String name)
          Returns the Source(s) with the given name, if any.
 List<Source> SourceCatalog.findSourceByName(String name)
           
 List<Source> SourceGroup.getSources()
          Returns a set of all sources held by this group.
 List<Source> SourceProvider.getSources()
          Returns a list of all sources held by this provider.
 List<Source> SourceCatalog.getSources()
           
 List<Source> SourceGroup.getSources(Filter<Source> filter)
          Returns a set of all sources in this group that can pass through filter.
 List<Source> SourceProvider.getSources(Filter<Source> filter)
          Returns a list of sources held this provider that can pass through filter.
 List<Source> SourceCatalog.getSources(Filter<Source> filter)
           
protected  List<Validation<Source>> SourceValidator.makeValidationList(ValidationPurpose purpose)
           
 List<Source> SourceGroup.removeAllSources()
          Removes all sources from this group.
 Collection<Source> SourceFilter.selectFrom(Collection<?> bag)
          Selects those objects in bag that are sources and that can pass through this filter.
 

Methods in edu.nrao.sss.model.source with parameters of type Source
 boolean SourceFilter.allows(Source src)
          Returns true if this filter allows the given source to pass through it.
 boolean SourceFilter.blocks(Source src)
          Returns true if this filter blocks the given source.
 Source SourceLookupTable.put(Date key, Source value)
           
 void SourceTableListener.sourceAdded(Source newSource, SourceLookupTable table)
          Sent after newSource was added to table.
 void SourceTableListener.sourceRemoved(Source oldSource, SourceLookupTable table)
          Sent after oldSource was removed from table.
 

Method parameters in edu.nrao.sss.model.source with type arguments of type Source
 List<Source> SourceGroup.getSources(Filter<Source> filter)
          Returns a set of all sources in this group that can pass through filter.
 List<Source> SourceProvider.getSources(Filter<Source> filter)
          Returns a list of sources held this provider that can pass through filter.
 List<Source> SourceCatalog.getSources(Filter<Source> filter)
           
 void SourceLookupTable.putAll(Map<Date,Source> map)
           
 void SourceTableListener.sourcesAdded(Collection<Source> newSources, SourceLookupTable table)
          Sent after newSources were added to table.
 

Uses of Source in edu.nrao.sss.model.source.experiment
 

Methods in edu.nrao.sss.model.source.experiment with parameters of type Source
 void SourceMap.addSource(Source newSource)
           
 void SourceMapComponent.addSource(Source newSource)
           
 void SourceMap.addSource(Source newSource, String collectionName)
           
 void SourceMapComponent.addSource(Source newSource, String collectionName)
           
 

Method parameters in edu.nrao.sss.model.source.experiment with type arguments of type Source
 void SourceMap.addSources(Collection<? extends Source> newSources)
           
 void SourceMapComponent.addSources(Collection<? extends Source> newSources)
           
 void SourceMap.addSources(Collection<? extends Source> newSources, String collectionName)
           
 void SourceMapComponent.addSources(Collection<? extends Source> newSources, String collectionName)
           
 

Uses of Source in edu.nrao.sss.model.source.parser
 

Methods in edu.nrao.sss.model.source.parser that return types with arguments of type Source
 List<Source> VlbaSourceCatalogReader.getAddedSources()
          Returns a list of sources that were marked with the "add" modification code and whose effective dates were on or after that sent to the read method.
 List<Source> VlbaSourceCatalogReader.getModifiedSources()
          Returns a list of sources that were marked with the "modified" modification code and whose effective dates were on or after that sent to the read method.
 List<Source> VlbaSourceCatalogReader.getRemovedSources()
          Returns a list of sources that were marked with the "removed" modification code and whose effective dates were on or after that sent to the read method.
 

Methods in edu.nrao.sss.model.source.parser with parameters of type Source
 boolean Astro2007aHtmlTableReader.addFileBrightnessesTo(Source source)
          Adds to source any file-based brightnesses contained in this reader that are associated with a source of the same name.
 boolean Astro2007aHtmlTableReader.addImageLinksTo(Source source)
          Adds to source any image links contained in this reader that are associated with a source of the same name.
 boolean Astro2007aHtmlTableReader.addLinksTo(Source source)
          Adds to source any informational links contained in this reader that are associated with a source of the same name.
 



Copyright © 2009. All Rights Reserved.