diff options
author | Tomoyuki Kubota <himajin100000@gmail.com> | 2019-05-24 19:24:10 +0900 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-05-27 11:40:35 +0200 |
commit | 51f1e62e2dae37746d218a187d4b0158296ad155 (patch) | |
tree | 705fea877bb0dd7a9e3982370a7234a00e3ebe1f /bean | |
parent | 9d18bc40416b651340804f44ba5fae65f3bbbcfa (diff) |
@deprecated should be with @Deprecated
Without this patch, warnings will be given
when LibreOffice is built with JDK9 or later.
Change-Id: I7aa6e99ace2377fbdb7dd732949ce10d9bd9df58
Reviewed-on: https://gerrit.libreoffice.org/72947
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'bean')
-rw-r--r-- | bean/com/sun/star/comp/beans/NativeConnection.java | 1 | ||||
-rw-r--r-- | bean/com/sun/star/comp/beans/NativeService.java | 1 | ||||
-rw-r--r-- | bean/com/sun/star/comp/beans/OOoBean.java | 15 |
3 files changed, 17 insertions, 0 deletions
diff --git a/bean/com/sun/star/comp/beans/NativeConnection.java b/bean/com/sun/star/comp/beans/NativeConnection.java index eebae5d40609..dd253134efb8 100644 --- a/bean/com/sun/star/comp/beans/NativeConnection.java +++ b/bean/com/sun/star/comp/beans/NativeConnection.java @@ -24,6 +24,7 @@ import com.sun.star.connection.XConnection; * * @deprecated. */ +@Deprecated class NativeConnection implements XConnection { diff --git a/bean/com/sun/star/comp/beans/NativeService.java b/bean/com/sun/star/comp/beans/NativeService.java index 9df62f072976..c1e8282964a7 100644 --- a/bean/com/sun/star/comp/beans/NativeService.java +++ b/bean/com/sun/star/comp/beans/NativeService.java @@ -21,6 +21,7 @@ package com.sun.star.comp.beans; /* * @deprecated */ + @Deprecated interface NativeService { String getIdentifier(); void startupService() throws java.io.IOException; diff --git a/bean/com/sun/star/comp/beans/OOoBean.java b/bean/com/sun/star/comp/beans/OOoBean.java index 606b627abf77..345d5614c266 100644 --- a/bean/com/sun/star/comp/beans/OOoBean.java +++ b/bean/com/sun/star/comp/beans/OOoBean.java @@ -119,6 +119,7 @@ public class OOoBean the dispose method of the OfficeConnection or the OOoBean's stopOOoConnection method would make all instances of OOoBean stop working. */ + @Deprecated public OOoBean( OfficeConnection iConnection ) throws NoConnectionException { @@ -212,6 +213,7 @@ public class OOoBean make is method work. It is better to call OOoBean's methods and be prepared to catch a NoConnectionException. */ + @Deprecated public boolean isOOoConnected() { return iConnection != null; @@ -353,6 +355,7 @@ public class OOoBean should call the clearDocument of the deriving class or {@link #clear} which discards the currently displayed document. */ + @Deprecated public synchronized void clearDocument( boolean bClearStateToo ) { // TBD @@ -488,6 +491,7 @@ public class OOoBean office window is called, then the actions are performed for which this method needed to be called previously. */ + @Deprecated public synchronized void releaseSystemWindow() throws SystemWindowException, @@ -1024,6 +1028,7 @@ com.sun.star.frame.XLayoutManager xLayoutManager = xLayoutManager.showElement("private:resource/menubar/menubar"); </pre> */ + @Deprecated public void setAllBarsVisible( boolean bVisible ) { bIgnoreVisibility = true; @@ -1041,6 +1046,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible setAllBarsVisible}. */ + @Deprecated protected void applyToolVisibilities() { bIgnoreVisibility = true; @@ -1061,6 +1067,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated protected boolean setToolVisible( String aProperty, String aResourceURL, boolean bOldValue, boolean bNewValue ) @@ -1127,6 +1134,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public void setMenuBarVisible(boolean bVisible) { try @@ -1154,6 +1162,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public boolean isMenuBarVisible() { return bMenuBarVisible; @@ -1175,6 +1184,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public void setStandardBarVisible(boolean bVisible) { try @@ -1202,6 +1212,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public boolean isStandardBarVisible() { return bStandardBarVisible; @@ -1223,6 +1234,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public void setToolBarVisible(boolean bVisible) { try @@ -1250,6 +1262,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public boolean isToolBarVisible() { return bToolBarVisible; @@ -1271,6 +1284,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public void setStatusBarVisible(boolean bVisible) { try @@ -1298,6 +1312,7 @@ xLayoutManager.showElement("private:resource/menubar/menubar"); which can be obtained from a frame, to control toolbars. See also {@link #setAllBarsVisible}. */ + @Deprecated public boolean isStatusBarVisible() { return bStatusBarVisible; |