Esempio n. 1
0
 /** Writes the content to a stream.
 * @param os the stream
 * @throws DocumentException on error
 * @throws IOException on error
 */    
 public void WriteTo(Stream os) {
     Wrt wrt = new Wrt(os, this);
     wrt.WriteTo();
 }
Esempio n. 2
0
 /** Writes the content to a stream.
 * @param os the stream
 * @throws DocumentException on error
 * @throws IOException on error
 */    
 virtual public void WriteTo(Stream os) {
     if (wrt == null)
         wrt = new Wrt(os, this);
     wrt.Write();
 }
Esempio n. 3
0
 public FdfWriter(Stream os)
 {
     wrt = new Wrt(os, this);
 }
Esempio n. 4
0
 public FdfWriter(Stream os) {
     wrt = new Wrt(os, this);
 }
Esempio n. 5
0
        /// <summary>
        /// Writes the content to a stream.
        /// @throws DocumentException on error
        /// @throws IOException on error
        /// </summary>
        /// <param name="os">the stream</param>
        public void WriteTo(Stream os)
        {
            Wrt wrt = new Wrt(os, this);

            wrt.WriteTo();
        }