Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

apollo.dataadapter.das.simple
Class SimpleDASSequence  view SimpleDASSequence download SimpleDASSequence.java

java.lang.Object
  extended byapollo.dataadapter.das.simple.SimpleDASSequence
All Implemented Interfaces:
apollo.dataadapter.das.DASSequence

public class SimpleDASSequence
extends java.lang.Object
implements apollo.dataadapter.das.DASSequence

I am a lightweight implementation of the DASSequence interface. I am a simple bag of attributes with no further internal functionality.


Field Summary
private  java.lang.String dNA
           
private  java.lang.String dNALength
           
private  java.lang.String id
           
private  java.lang.String start
           
private  java.lang.String stop
           
private  java.lang.String version
           
 
Constructor Summary
SimpleDASSequence(java.lang.String theId, java.lang.String theStart, java.lang.String theStop, java.lang.String theVersion, java.lang.String theDNALength, java.lang.String theDNA)
           
 
Method Summary
 java.lang.String getDNA()
           
 java.lang.String getDNALength()
           
 java.lang.String getId()
           
 java.lang.String getStart()
           
 java.lang.String getStop()
           
 java.lang.String getVersion()
           
 void setDNA(java.lang.String newValue)
           
 void setDNALength(java.lang.String newValue)
           
 void setId(java.lang.String newValue)
           
 void setStart(java.lang.String newValue)
           
 void setStop(java.lang.String newValue)
           
 void setVersion(java.lang.String newValue)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

id

private java.lang.String id

start

private java.lang.String start

stop

private java.lang.String stop

version

private java.lang.String version

dNALength

private java.lang.String dNALength

dNA

private java.lang.String dNA
Constructor Detail

SimpleDASSequence

public SimpleDASSequence(java.lang.String theId,
                         java.lang.String theStart,
                         java.lang.String theStop,
                         java.lang.String theVersion,
                         java.lang.String theDNALength,
                         java.lang.String theDNA)
Method Detail

getId

public java.lang.String getId()
Specified by:
getId in interface apollo.dataadapter.das.DASSequence

getStart

public java.lang.String getStart()
Specified by:
getStart in interface apollo.dataadapter.das.DASSequence

getStop

public java.lang.String getStop()
Specified by:
getStop in interface apollo.dataadapter.das.DASSequence

getVersion

public java.lang.String getVersion()
Specified by:
getVersion in interface apollo.dataadapter.das.DASSequence

getDNALength

public java.lang.String getDNALength()
Specified by:
getDNALength in interface apollo.dataadapter.das.DASSequence

getDNA

public java.lang.String getDNA()
Specified by:
getDNA in interface apollo.dataadapter.das.DASSequence

setId

public void setId(java.lang.String newValue)
Specified by:
setId in interface apollo.dataadapter.das.DASSequence

setStart

public void setStart(java.lang.String newValue)
Specified by:
setStart in interface apollo.dataadapter.das.DASSequence

setStop

public void setStop(java.lang.String newValue)
Specified by:
setStop in interface apollo.dataadapter.das.DASSequence

setVersion

public void setVersion(java.lang.String newValue)
Specified by:
setVersion in interface apollo.dataadapter.das.DASSequence

setDNALength

public void setDNALength(java.lang.String newValue)
Specified by:
setDNALength in interface apollo.dataadapter.das.DASSequence

setDNA

public void setDNA(java.lang.String newValue)
Specified by:
setDNA in interface apollo.dataadapter.das.DASSequence

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).