Author: arielch
Date: Sun Mar  9 05:46:37 2014
New Revision: 1575660

URL: http://svn.apache.org/r1575660
Log:
i124384 - [API] Add since tag to Undo API IDL files

Modified:
    
openoffice/trunk/main/offapi/com/sun/star/document/EmptyUndoStackException.idl
    
openoffice/trunk/main/offapi/com/sun/star/document/UndoContextNotClosedException.idl
    openoffice/trunk/main/offapi/com/sun/star/document/UndoFailedException.idl
    openoffice/trunk/main/offapi/com/sun/star/document/UndoManagerEvent.idl
    openoffice/trunk/main/offapi/com/sun/star/document/XUndoAction.idl
    openoffice/trunk/main/offapi/com/sun/star/document/XUndoManager.idl
    openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerListener.idl
    openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerSupplier.idl

Modified: 
openoffice/trunk/main/offapi/com/sun/star/document/EmptyUndoStackException.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/EmptyUndoStackException.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- 
openoffice/trunk/main/offapi/com/sun/star/document/EmptyUndoStackException.idl 
(original)
+++ 
openoffice/trunk/main/offapi/com/sun/star/document/EmptyUndoStackException.idl 
Sun Mar  9 05:46:37 2014
@@ -34,6 +34,7 @@ module com { module sun { module star { 
 
 /** is raised when an operation is attemption at an XUndoManager which 
requires a non-empty stack
     of undo actions, and this requirement is not fullfilled.
+    @since OpenOffice 3.4
  */
 published exception EmptyUndoStackException : 
::com::sun::star::util::InvalidStateException
 {

Modified: 
openoffice/trunk/main/offapi/com/sun/star/document/UndoContextNotClosedException.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/UndoContextNotClosedException.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- 
openoffice/trunk/main/offapi/com/sun/star/document/UndoContextNotClosedException.idl
 (original)
+++ 
openoffice/trunk/main/offapi/com/sun/star/document/UndoContextNotClosedException.idl
 Sun Mar  9 05:46:37 2014
@@ -34,6 +34,7 @@ module com { module sun { module star { 
 
 /** is thrown when an operation is attempted at an <type>XUndoManager</type> 
which requires all undo
     contexts to be closed, but this requirement is not fullfilled.
+    @since OpenOffice 3.4
  */
 published exception UndoContextNotClosedException : 
::com::sun::star::util::InvalidStateException
 {

Modified: 
openoffice/trunk/main/offapi/com/sun/star/document/UndoFailedException.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/UndoFailedException.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- openoffice/trunk/main/offapi/com/sun/star/document/UndoFailedException.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/document/UndoFailedException.idl 
Sun Mar  9 05:46:37 2014
@@ -36,6 +36,7 @@ module com { module sun { module star { 
 
     @see XUndoAction::undo
     @see XUndoManager::undo
+    @since OpenOffice 3.4
  */
 published exception UndoFailedException : ::com::sun::star::uno::Exception
 {

Modified: 
openoffice/trunk/main/offapi/com/sun/star/document/UndoManagerEvent.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/UndoManagerEvent.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- openoffice/trunk/main/offapi/com/sun/star/document/UndoManagerEvent.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/document/UndoManagerEvent.idl Sun 
Mar  9 05:46:37 2014
@@ -37,6 +37,7 @@ module com { module sun { module star { 
     @see XUndoManager
     @see XUndoManagerListener
     @see XUndoAction
+    @since OpenOffice 3.4
  */
 published struct UndoManagerEvent : ::com::sun::star::lang::EventObject
 {

Modified: openoffice/trunk/main/offapi/com/sun/star/document/XUndoAction.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/XUndoAction.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- openoffice/trunk/main/offapi/com/sun/star/document/XUndoAction.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/document/XUndoAction.idl Sun Mar  
9 05:46:37 2014
@@ -34,6 +34,7 @@ module com { module sun { module star { 
 
//==================================================================================================================
 
 /** represents a single (undoable) action on a document
+    @since OpenOffice 3.4
  */
 published interface XUndoAction
 {

Modified: openoffice/trunk/main/offapi/com/sun/star/document/XUndoManager.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/XUndoManager.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- openoffice/trunk/main/offapi/com/sun/star/document/XUndoManager.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/document/XUndoManager.idl Sun Mar 
 9 05:46:37 2014
@@ -72,6 +72,8 @@ published interface XUndoManagerListener
     <p>An Undo manager can be locked and unlocked, using the 
<member>XLockable::lock</member> and
     <member>XLockable::unlock</member> methods. When it is locked, then every 
attempt to add an undo action, or to
     enter or leave an Undo context, will be silently ignored.</p>
+
+    @since OpenOffice 3.4
  */
 published interface XUndoManager
 {

Modified: 
openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerListener.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerListener.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerListener.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerListener.idl 
Sun Mar  9 05:46:37 2014
@@ -36,6 +36,7 @@ module com { module sun { module star { 
 /** implemented by components which want to be notified of changes in the 
Undo/Redo stacks of an Undo manager.
 
     @see XUndoManager
+    @since OpenOffice 3.4
  */
 published interface XUndoManagerListener : 
::com::sun::star::lang::XEventListener
 {

Modified: 
openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerSupplier.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerSupplier.idl?rev=1575660&r1=1575659&r2=1575660&view=diff
==============================================================================
--- openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerSupplier.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/document/XUndoManagerSupplier.idl 
Sun Mar  9 05:46:37 2014
@@ -35,6 +35,8 @@ published interface XUndoManager;
 
//==================================================================================================================
 
 /** provides access to an XUndoManager.
+
+    @since OpenOffice 3.4
  */
 published interface XUndoManagerSupplier
 {


Reply via email to