Package org.moltools.design.data

Examples of org.moltools.design.data.PropertyHolderNucleotideSequence


    table.setAttribute(HTMLWriter.BORDER.getTag(),"0"); //$NON-NLS-1$
    table.setAttribute(HTMLWriter.CELLSPACING.getTag(),"0"); //$NON-NLS-1$
    table.setAttribute(HTMLWriter.CELLPADDING.getTag(),"0"); //$NON-NLS-1$
     
    for (int i = 0; i < tsss.length; i++) {
      PropertyHolderNucleotideSequence tss = tsss[i];
      Element tr = new Element(HTMLWriter.TR.getTag());
      tr.setAttribute(HTMLWriter.ALIGN.getTag(),HTMLWriter.LEFT.getTag());
      Element th = new Element(HTMLWriter.TH.getTag());
      th.addContent(tss.getID()+": "); //$NON-NLS-1$
      Element td = new Element(HTMLWriter.TD.getTag());
      Element tt = new Element(HTMLWriter.TT.getTag());     
      tt.addContent(MessageFormat.format(CoreMessages.getString("ProbeMakerHTMLRenderer.TEXT_TSS_TEMP"), new Object[] { new Double(ProbeMakerPropertyUtils.getHybridizationTemp(tss))})); //$NON-NLS-1$
      td.addContent(tt);
      tr.addContent(th);
View Full Code Here


    table.setAttribute(HTMLWriter.BORDER.getTag(),"0"); //$NON-NLS-1$
    table.setAttribute(HTMLWriter.CELLSPACING.getTag(),"0"); //$NON-NLS-1$
    table.setAttribute(HTMLWriter.CELLPADDING.getTag(),"0"); //$NON-NLS-1$
     
    for (int i = 0; i < tsss.length; i++) {
      PropertyHolderNucleotideSequence tss = tsss[i];
      Element tr = new Element(HTMLWriter.TR.getTag());
      tr.setAttribute(HTMLWriter.ALIGN.getTag(),HTMLWriter.LEFT.getTag());
      Element th = new Element(HTMLWriter.TH.getTag());
      th.addContent(tss.getID()+": "); //$NON-NLS-1$
      Element td = new Element(HTMLWriter.TD.getTag());
      Element tt = new Element(HTMLWriter.TT.getTag());     
      tt.addContent(MessageFormat.format(CoreMessages.getString("ProbeMakerHTMLRenderer.TEXT_TSS_TEMP"), new Object[] { new Double(ProbeMakerPropertyUtils.getHybridizationTemp(tss))})); //$NON-NLS-1$
      td.addContent(tt);
      tr.addContent(th);
View Full Code Here

TOP

Related Classes of org.moltools.design.data.PropertyHolderNucleotideSequence

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.