You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2016/07/21 10:28:19 UTC

svn commit: r1753660 - in /poi/site/publish/apidocs/org/apache/poi: POIDocument.html POIReadOnlyDocument.html

Author: nick
Date: Thu Jul 21 10:28:19 2016
New Revision: 1753660

URL: http://svn.apache.org/viewvc?rev=1753660&view=rev
Log:
Republish javadocs

Modified:
    poi/site/publish/apidocs/org/apache/poi/POIDocument.html
    poi/site/publish/apidocs/org/apache/poi/POIReadOnlyDocument.html

Modified: poi/site/publish/apidocs/org/apache/poi/POIDocument.html
URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/POIDocument.html?rev=1753660&r1=1753659&r2=1753660&view=diff
==============================================================================
--- poi/site/publish/apidocs/org/apache/poi/POIDocument.html (original)
+++ poi/site/publish/apidocs/org/apache/poi/POIDocument.html Thu Jul 21 10:28:19 2016
@@ -564,7 +564,8 @@ implements java.io.Closeable</pre>
    you must use <a href="../../../org/apache/poi/POIDocument.html#write(java.io.OutputStream)"><code>write(OutputStream)</code></a> or <a href="../../../org/apache/poi/POIDocument.html#write(java.io.File)"><code>write(File)</code></a> to 
    write to a brand new document.</div>
 <dl><dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - thrown on errors writing to the file</dd></dl>
+<dd><code>java.io.IOException</code> - thrown on errors writing to the file</dd><dt><span class="strong">Since:</span></dt>
+  <dd>POI 3.15 beta 3</dd></dl>
 </li>
 </ul>
 <a name="write(java.io.File)">
@@ -579,7 +580,8 @@ implements java.io.Closeable</pre>
  exists, it will be replaced, otherwise a new one will be created</div>
 <dl><dt><span class="strong">Parameters:</span></dt><dd><code>newFile</code> - The new File to write to.</dd>
 <dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - thrown on errors writing to the file</dd></dl>
+<dd><code>java.io.IOException</code> - thrown on errors writing to the file</dd><dt><span class="strong">Since:</span></dt>
+  <dd>POI 3.15 beta 3</dd></dl>
 </li>
 </ul>
 <a name="write(java.io.OutputStream)">

Modified: poi/site/publish/apidocs/org/apache/poi/POIReadOnlyDocument.html
URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/POIReadOnlyDocument.html?rev=1753660&r1=1753659&r2=1753660&view=diff
==============================================================================
--- poi/site/publish/apidocs/org/apache/poi/POIReadOnlyDocument.html (original)
+++ poi/site/publish/apidocs/org/apache/poi/POIReadOnlyDocument.html Thu Jul 21 10:28:19 2016
@@ -111,6 +111,8 @@
 extends <a href="../../../org/apache/poi/POIDocument.html" title="class in org.apache.poi">POIDocument</a></pre>
 <div class="block">This holds the common functionality for all read-only
   POI Document classes, i.e. ones which don't support writing.</div>
+<dl><dt><span class="strong">Since:</span></dt>
+  <dd>POI 3.15 beta 3</dd></dl>
 </li>
 </ul>
 </div>
@@ -267,14 +269,13 @@ extends <a href="../../../org/apache/poi
 <ul class="blockList">
 <li class="blockList">
 <h4>write</h4>
-<pre>public&nbsp;void&nbsp;write()
-           throws java.io.IOException</pre>
+<pre>public&nbsp;void&nbsp;write()</pre>
 <div class="block">Note - writing is not yet supported for this file format, sorry.</div>
 <dl>
 <dt><strong>Specified by:</strong></dt>
 <dd><code><a href="../../../org/apache/poi/POIDocument.html#write()">write</a></code>&nbsp;in class&nbsp;<code><a href="../../../org/apache/poi/POIDocument.html" title="class in org.apache.poi">POIDocument</a></code></dd>
 <dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - thrown on errors writing to the file</dd></dl>
+<dd><code>java.lang.IllegalStateException</code> - If you call the method, as writing is not supported</dd></dl>
 </li>
 </ul>
 <a name="write(java.io.File)">
@@ -283,15 +284,14 @@ extends <a href="../../../org/apache/poi
 <ul class="blockList">
 <li class="blockList">
 <h4>write</h4>
-<pre>public&nbsp;void&nbsp;write(java.io.File&nbsp;file)
-           throws java.io.IOException</pre>
+<pre>public&nbsp;void&nbsp;write(java.io.File&nbsp;file)</pre>
 <div class="block">Note - writing is not yet supported for this file format, sorry.</div>
 <dl>
 <dt><strong>Specified by:</strong></dt>
 <dd><code><a href="../../../org/apache/poi/POIDocument.html#write(java.io.File)">write</a></code>&nbsp;in class&nbsp;<code><a href="../../../org/apache/poi/POIDocument.html" title="class in org.apache.poi">POIDocument</a></code></dd>
 <dt><span class="strong">Parameters:</span></dt><dd><code>file</code> - The new File to write to.</dd>
 <dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - thrown on errors writing to the file</dd></dl>
+<dd><code>java.lang.IllegalStateException</code> - If you call the method, as writing is not supported</dd></dl>
 </li>
 </ul>
 <a name="write(java.io.OutputStream)">
@@ -300,15 +300,14 @@ extends <a href="../../../org/apache/poi
 <ul class="blockListLast">
 <li class="blockList">
 <h4>write</h4>
-<pre>public&nbsp;void&nbsp;write(java.io.OutputStream&nbsp;out)
-           throws java.io.IOException</pre>
+<pre>public&nbsp;void&nbsp;write(java.io.OutputStream&nbsp;out)</pre>
 <div class="block">Note - writing is not yet supported for this file format, sorry.</div>
 <dl>
 <dt><strong>Specified by:</strong></dt>
 <dd><code><a href="../../../org/apache/poi/POIDocument.html#write(java.io.OutputStream)">write</a></code>&nbsp;in class&nbsp;<code><a href="../../../org/apache/poi/POIDocument.html" title="class in org.apache.poi">POIDocument</a></code></dd>
 <dt><span class="strong">Parameters:</span></dt><dd><code>out</code> - The stream to write to.</dd>
 <dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - thrown on errors writing to the stream</dd></dl>
+<dd><code>java.lang.IllegalStateException</code> - If you call the method, as writing is not supported</dd></dl>
 </li>
 </ul>
 </li>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org