Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
rockchip_libcore
Commits
b365037f
Commit
b365037f
authored
14 years ago
by
Jesse Wilson
Browse files
Options
Download
Email Patches
Plain Diff
Add @Deprecated to match @deprecated where it's missing in libcore.
Change-Id: Icd07496c4d1371215a2153198d45d6aa719b26b7
parent
aa37a8aa
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
0 deletions
+6
-0
luni/src/main/java/org/xml/sax/AttributeList.java
luni/src/main/java/org/xml/sax/AttributeList.java
+1
-0
luni/src/main/java/org/xml/sax/DocumentHandler.java
luni/src/main/java/org/xml/sax/DocumentHandler.java
+1
-0
luni/src/main/java/org/xml/sax/HandlerBase.java
luni/src/main/java/org/xml/sax/HandlerBase.java
+1
-0
luni/src/main/java/org/xml/sax/Parser.java
luni/src/main/java/org/xml/sax/Parser.java
+1
-0
luni/src/main/java/org/xml/sax/helpers/AttributeListImpl.java
.../src/main/java/org/xml/sax/helpers/AttributeListImpl.java
+1
-0
luni/src/main/java/org/xml/sax/helpers/ParserFactory.java
luni/src/main/java/org/xml/sax/helpers/ParserFactory.java
+1
-0
No files found.
luni/src/main/java/org/xml/sax/AttributeList.java
View file @
b365037f
...
...
@@ -69,6 +69,7 @@ package org.xml.sax;
* @see org.xml.sax.DocumentHandler#startElement startElement
* @see org.xml.sax.helpers.AttributeListImpl AttributeListImpl
*/
@Deprecated
public
interface
AttributeList
{
...
...
This diff is collapsed.
Click to expand it.
luni/src/main/java/org/xml/sax/DocumentHandler.java
View file @
b365037f
...
...
@@ -44,6 +44,7 @@ package org.xml.sax;
* @see org.xml.sax.Locator
* @see org.xml.sax.HandlerBase
*/
@Deprecated
public
interface
DocumentHandler
{
...
...
This diff is collapsed.
Click to expand it.
luni/src/main/java/org/xml/sax/HandlerBase.java
View file @
b365037f
...
...
@@ -42,6 +42,7 @@ package org.xml.sax;
* @see org.xml.sax.DocumentHandler
* @see org.xml.sax.ErrorHandler
*/
@Deprecated
public
class
HandlerBase
implements
EntityResolver
,
DTDHandler
,
DocumentHandler
,
ErrorHandler
{
...
...
This diff is collapsed.
Click to expand it.
luni/src/main/java/org/xml/sax/Parser.java
View file @
b365037f
...
...
@@ -49,6 +49,7 @@ import java.util.Locale;
* @see org.xml.sax.HandlerBase
* @see org.xml.sax.InputSource
*/
@Deprecated
public
interface
Parser
{
...
...
This diff is collapsed.
Click to expand it.
luni/src/main/java/org/xml/sax/helpers/AttributeListImpl.java
View file @
b365037f
...
...
@@ -62,6 +62,7 @@ import org.xml.sax.AttributeList;
* @see org.xml.sax.AttributeList
* @see org.xml.sax.DocumentHandler#startElement
*/
@Deprecated
public
class
AttributeListImpl
implements
AttributeList
{
...
...
This diff is collapsed.
Click to expand it.
luni/src/main/java/org/xml/sax/helpers/ParserFactory.java
View file @
b365037f
...
...
@@ -40,6 +40,7 @@ import org.xml.sax.Parser;
* @author David Megginson
* @version 2.0.1 (sax2r2)
*/
@Deprecated
public
class
ParserFactory
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment