|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Thread
org.openscience.nmrshiftdb.util.Export
public class Export
This class converts spectra/molecules to various other formats
Nested Class Summary |
---|
Nested classes/interfaces inherited from class java.lang.Thread |
---|
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler |
Field Summary | |
---|---|
java.awt.Color |
backColor
|
private org.openscience.cdk.interfaces.IMolecule |
cdkmol
|
private org.openscience.cdk.interfaces.IMolecule |
cdkmolwithh
|
private boolean |
compact
|
java.lang.String[] |
pictures
This are the image files used for making pdf |
int |
selected
|
private DBSpectrum |
spectrum
|
private boolean |
useCSS
|
Fields inherited from class java.lang.Thread |
---|
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY |
Constructor Summary | |
---|---|
Export(DBMolecule molecule)
Constructor for the Export object |
|
Export(DBMolecule molecule,
DBSpectrum spectrum)
Constructor for the Export object |
|
Export(DBSpectrum spectrum)
Constructor for the Export object |
Method Summary | |
---|---|
java.lang.String |
getDocbook(java.lang.String format,
java.lang.String formatPic)
Gets the spectrum and molecule as docbook |
java.lang.String |
getHtml(javax.servlet.http.HttpServletRequest request)
Gets the molecule/spectrum as a simple html file |
java.lang.String |
getImage(boolean molecule,
java.lang.String format,
java.lang.String path,
boolean drawNumbers)
Gets an image of spectrum or molecule, width/height set to a reasonable value for molecules (Hint: don't use this for spectra). |
java.lang.String |
getImage(boolean molecule,
java.lang.String format,
java.lang.String path,
int width,
int height,
boolean drawNumbers,
DBAtom[] atoms)
Gets an image of spectrum or molecule |
java.lang.String |
getMolSvg(boolean drawNumbers)
Gets the molecule as an svg, with and height set to a reasonable value for the molecule. |
java.lang.String |
getMolSvg(int width,
int height,
boolean drawNumbers)
Gets the molecule as an svg |
java.lang.String |
getSpecSvg(DBSpectrum spectrum,
int spectrumwidth,
int spectrumheight,
boolean useCSS,
DBAtom[] atoms)
Gets a spectrum as svg, given by spectrum |
java.lang.String |
getSpecSvg(int spectrumwidth,
int spectrumheight)
Gets the spectrum as svg which was set by the constructor. |
java.lang.String |
getSpecSvg(int spectrumwidth,
int spectrumheight,
DBAtom[] atoms)
Gets the spectrum as svg which was set by the constructor. |
static java.lang.String |
getSpecSvg(java.lang.String specfile,
java.lang.String spectype,
java.lang.String fieldstrength,
int spectrumwidth,
int spectrumheight,
boolean useCSS)
Gets a spectrum as svg, given by specfile |
java.io.ByteArrayOutputStream |
makeZip(java.lang.String[] filenames)
Makes a zip file out of several files |
void |
setCompact(boolean compact)
|
Methods inherited from class java.lang.Thread |
---|
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, run, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public java.lang.String[] pictures
public java.awt.Color backColor
private DBSpectrum spectrum
private org.openscience.cdk.interfaces.IMolecule cdkmol
private org.openscience.cdk.interfaces.IMolecule cdkmolwithh
private boolean useCSS
public int selected
private boolean compact
Constructor Detail |
---|
public Export(DBSpectrum spectrum) throws java.lang.Exception
spectrum
- The spectrum to export
java.lang.Exception
- Database problemspublic Export(DBMolecule molecule) throws java.lang.Exception
molecle
- The molecule to export
java.lang.Exception
- Database problemspublic Export(DBMolecule molecule, DBSpectrum spectrum) throws java.lang.Exception
molecle
- The molecule to exportspectrum
- The spectrum to export
java.lang.Exception
- Database problemsMethod Detail |
---|
public void setCompact(boolean compact)
public java.lang.String getHtml(javax.servlet.http.HttpServletRequest request) throws java.lang.Exception
request
- The current servlet request.
java.lang.Exception
- Database problemspublic java.lang.String getDocbook(java.lang.String format, java.lang.String formatPic) throws java.lang.Exception
format
- rtf=no nested tables, pdf=nested tablesformatPic
- Description of Parameter
java.lang.Exception
- Description of Exceptionpublic java.lang.String getMolSvg(boolean drawNumbers) throws java.lang.Exception
drawnumbers
- Should the svg contain atom numbers?
java.lang.Exception
- Description of Exception.public java.lang.String getMolSvg(int width, int height, boolean drawNumbers) throws java.lang.Exception
width
- The width of the svgheight
- The height of the svgdrawnumbers
- Should the svg contain atom numbers?
java.lang.Exception
- Description of Exceptionpublic java.lang.String getSpecSvg(int spectrumwidth, int spectrumheight) throws java.lang.Exception
spectrumwidth
- Width of svgspectrumheight
- Height of svg * @return The spectrum as svg
java.lang.Exception
- Description of Exceptionpublic java.lang.String getSpecSvg(int spectrumwidth, int spectrumheight, DBAtom[] atoms) throws java.lang.Exception
spectrumwidth
- Width of svgspectrumheight
- Height of svg * @return The spectrum as svg
java.lang.Exception
- Description of Exceptionpublic java.lang.String getSpecSvg(DBSpectrum spectrum, int spectrumwidth, int spectrumheight, boolean useCSS, DBAtom[] atoms) throws java.lang.Exception
spectrum
- The spectrum to export.spectrumwidth
- Width of svgspectrumheight
- Height of svguseCSS
-
java.lang.Exception
- Description of Exceptionpublic static java.lang.String getSpecSvg(java.lang.String specfile, java.lang.String spectype, java.lang.String fieldstrength, int spectrumwidth, int spectrumheight, boolean useCSS) throws java.lang.Exception
spectrum
- The spectrum to export, a string of type shift,intensity|...spectype
- The type of spectrum, string like 13C, 1H ...
~ @param fieldstrength The fieldstrengthspectrumwidth
- Width of svgspectrumheight
- Height of svguseCSS
-
java.lang.Exception
- Description of Exceptionpublic java.lang.String getImage(boolean molecule, java.lang.String format, java.lang.String path, boolean drawNumbers) throws java.lang.Exception
molecule
- true=image of molecule, falso=of spectrumformat
- jpeg, tiff or pngpath
- Where to save the imagedrawnumbers
- Should the svg contain atom numbers?
java.lang.Exception
- Description of Exceptionpublic java.lang.String getImage(boolean molecule, java.lang.String format, java.lang.String path, int width, int height, boolean drawNumbers, DBAtom[] atoms) throws java.lang.Exception
molecule
- true=image of molecule, falso=of spectrumformat
- jpeg, tiff or pngpath
- Where to save the imagewidth
- The width of the svgheight
- The height of the svgdrawnumbers
- Should the svg contain atom numbers?
java.lang.Exception
- Description of Exceptionpublic java.io.ByteArrayOutputStream makeZip(java.lang.String[] filenames) throws java.io.IOException
filenames
- The files to be zipped
java.io.IOException
- Problem reading files
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |