Last update: 2011-06-23

org.proteios.io
Interface SpectrumFileContactInterface

All Known Implementing Classes:
SpectrumFileContact

public interface SpectrumFileContactInterface

This interface defines methods to access spectrum file contact information. Some field data may be redundant, since it was designed to transfer as detailed information as possible from mzData and mzML spectrum files, which store contact info in different formats. MzData files use a general "contactInfo" XML tag, where mzML files use "address", "url", and "email" XML tags. MzData files has a specific "institution" XML tag with information that would be located in the "address" XML tag in mzML files.

Author:
olle

Method Summary
 String getAddress()
          Get the contact address.
 String getContactInfo()
          Get the contact info.
 String getEmail()
          Get the contact email.
 String getInstitution()
          Get the contact institution.
 String getName()
          Get the contact name.
 String getUrl()
          Get the contact url.
 void setAddress(String address)
          Set the contact address.
 void setContactInfo(String contactInfo)
          Set the contact info.
 void setEmail(String email)
          Set the contact email.
 void setInstitution(String institution)
          Set the contact institution.
 void setName(String name)
          Set the contact name.
 void setUrl(String url)
          Set the contact url.
 

Method Detail

getName

String getName()
Get the contact name.

Returns:
String The contact name.

setName

void setName(String name)
Set the contact name.

Parameters:
name - String The contact name to set.

getInstitution

String getInstitution()
Get the contact institution.

Returns:
String The contact institution.

setInstitution

void setInstitution(String institution)
Set the contact institution.

Parameters:
institution - String The contact institution to set.

getContactInfo

String getContactInfo()
Get the contact info.

Returns:
String The contact info.

setContactInfo

void setContactInfo(String contactInfo)
Set the contact info.

Parameters:
contactInfo - String The contact info to set.

getAddress

String getAddress()
Get the contact address.

Returns:
String The contact address.

setAddress

void setAddress(String address)
Set the contact address.

Parameters:
address - String The contact address to set.

getUrl

String getUrl()
Get the contact url.

Returns:
String The contact url.

setUrl

void setUrl(String url)
Set the contact url.

Parameters:
url - String The contact url to set.

getEmail

String getEmail()
Get the contact email.

Returns:
String The contact email.

setEmail

void setEmail(String email)
Set the contact email.

Parameters:
email - String The contact email to set.

Last update: 2011-06-23