summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2014-03-09 05:46:37 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-09 16:58:07 +0000
commita842c6e7b33aca734946a32ecff90a11e184f802 (patch)
tree9851e3785f2203dec804ce6cfb5a39cf2333eb7f /offapi
parentf3a7250c3fc4cfa16a5f7236048b12c3b93b17ee (diff)
Related: #i124384# Add since tag to Undo API IDL files
(cherry picked from commit e2fb6101543888977e882596ae64d854f1b09cb5) Change-Id: I6ab35082503b506bd5d61af0b1ed67c662100716
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/document/EmptyUndoStackException.idl1
-rw-r--r--offapi/com/sun/star/document/UndoContextNotClosedException.idl1
-rw-r--r--offapi/com/sun/star/document/UndoFailedException.idl1
-rw-r--r--offapi/com/sun/star/document/UndoManagerEvent.idl1
-rw-r--r--offapi/com/sun/star/document/XUndoAction.idl1
-rw-r--r--offapi/com/sun/star/document/XUndoManager.idl2
-rw-r--r--offapi/com/sun/star/document/XUndoManagerListener.idl1
-rw-r--r--offapi/com/sun/star/document/XUndoManagerSupplier.idl2
8 files changed, 10 insertions, 0 deletions
diff --git a/offapi/com/sun/star/document/EmptyUndoStackException.idl b/offapi/com/sun/star/document/EmptyUndoStackException.idl
index 7812710bd3b0..8ad131104db6 100644
--- a/offapi/com/sun/star/document/EmptyUndoStackException.idl
+++ b/offapi/com/sun/star/document/EmptyUndoStackException.idl
@@ -28,6 +28,7 @@ module com { module sun { module star { module document {
/** 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 OOo 3.4
*/
exception EmptyUndoStackException : ::com::sun::star::util::InvalidStateException
{
diff --git a/offapi/com/sun/star/document/UndoContextNotClosedException.idl b/offapi/com/sun/star/document/UndoContextNotClosedException.idl
index fbccfc018c7c..fb26efdffd7f 100644
--- a/offapi/com/sun/star/document/UndoContextNotClosedException.idl
+++ b/offapi/com/sun/star/document/UndoContextNotClosedException.idl
@@ -28,6 +28,7 @@ module com { module sun { module star { module document {
/** is thrown when an operation is attempted at an XUndoManager which requires all undo
contexts to be closed, but this requirement is not fullfilled.
+ @since OOo 3.4
*/
exception UndoContextNotClosedException : ::com::sun::star::util::InvalidStateException
{
diff --git a/offapi/com/sun/star/document/UndoFailedException.idl b/offapi/com/sun/star/document/UndoFailedException.idl
index c726d678c942..9c71dafc1355 100644
--- a/offapi/com/sun/star/document/UndoFailedException.idl
+++ b/offapi/com/sun/star/document/UndoFailedException.idl
@@ -30,6 +30,7 @@ module com { module sun { module star { module document {
@see XUndoAction::undo
@see XUndoManager::undo
+ @since OOo 3.4
*/
exception UndoFailedException : ::com::sun::star::uno::Exception
{
diff --git a/offapi/com/sun/star/document/UndoManagerEvent.idl b/offapi/com/sun/star/document/UndoManagerEvent.idl
index 37e466fe07ff..769e3ea1b76f 100644
--- a/offapi/com/sun/star/document/UndoManagerEvent.idl
+++ b/offapi/com/sun/star/document/UndoManagerEvent.idl
@@ -31,6 +31,7 @@ module com { module sun { module star { module document {
@see XUndoManager
@see XUndoManagerListener
@see XUndoAction
+ @since OOo 3.4
*/
struct UndoManagerEvent : ::com::sun::star::lang::EventObject
{
diff --git a/offapi/com/sun/star/document/XUndoAction.idl b/offapi/com/sun/star/document/XUndoAction.idl
index 6dfbf486be45..dd9b13212c47 100644
--- a/offapi/com/sun/star/document/XUndoAction.idl
+++ b/offapi/com/sun/star/document/XUndoAction.idl
@@ -28,6 +28,7 @@ module com { module sun { module star { module document {
/** represents a single (undoable) action on a document
+ @since OOo 3.4
*/
interface XUndoAction
{
diff --git a/offapi/com/sun/star/document/XUndoManager.idl b/offapi/com/sun/star/document/XUndoManager.idl
index cfe5645ed5ff..0ba866a4f290 100644
--- a/offapi/com/sun/star/document/XUndoManager.idl
+++ b/offapi/com/sun/star/document/XUndoManager.idl
@@ -66,6 +66,8 @@ interface XUndoManagerListener;
<p>An Undo manager can be locked and unlocked, using the XLockable::lock() and
XLockable::unlock() 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 OOo 3.4
*/
interface XUndoManager
{
diff --git a/offapi/com/sun/star/document/XUndoManagerListener.idl b/offapi/com/sun/star/document/XUndoManagerListener.idl
index aacae1390615..82bb52950f38 100644
--- a/offapi/com/sun/star/document/XUndoManagerListener.idl
+++ b/offapi/com/sun/star/document/XUndoManagerListener.idl
@@ -30,6 +30,7 @@ module com { module sun { module star { module document {
/** implemented by components which want to be notified of changes in the Undo/Redo stacks of an Undo manager.
@see XUndoManager
+ @since OOo 3.4
*/
interface XUndoManagerListener : ::com::sun::star::lang::XEventListener
{
diff --git a/offapi/com/sun/star/document/XUndoManagerSupplier.idl b/offapi/com/sun/star/document/XUndoManagerSupplier.idl
index 867cafe90ca2..b3affa1ecb0b 100644
--- a/offapi/com/sun/star/document/XUndoManagerSupplier.idl
+++ b/offapi/com/sun/star/document/XUndoManagerSupplier.idl
@@ -29,6 +29,8 @@ interface XUndoManager;
/** provides access to an XUndoManager.
+
+ @since OOo 3.4
*/
interface XUndoManagerSupplier
{