diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfChartDocument.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfChartDocument.java index bf4fce8dfc..704b2cd1e0 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfChartDocument.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfChartDocument.java @@ -33,7 +33,6 @@ * This class represents an empty ODF document , which will be in general embedded * in an existing ODF (Spreadsheet) document. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.ChartDocument} in Simple API. */ public class OdfChartDocument extends OdfDocument { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfGraphicsDocument.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfGraphicsDocument.java index 8abaa26313..a87a8e559f 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfGraphicsDocument.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfGraphicsDocument.java @@ -32,7 +32,6 @@ /** * This class represents an empty ODF graphics document. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.GraphicsDocument} in Simple API. */ public class OdfGraphicsDocument extends OdfDocument { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfPresentationDocument.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfPresentationDocument.java index fc71410940..4411c4ed94 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfPresentationDocument.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfPresentationDocument.java @@ -66,7 +66,6 @@ /** * This class represents an empty ODF presentation. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.PresentationDocument} in Simple API. */ public class OdfPresentationDocument extends OdfDocument { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfSpreadsheetDocument.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfSpreadsheetDocument.java index 7537714b19..f6d1262d6c 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfSpreadsheetDocument.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfSpreadsheetDocument.java @@ -32,7 +32,6 @@ /** * This class represents an empty ODF spreadsheet document. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.SpreadsheetDocument} in Simple API. */ public class OdfSpreadsheetDocument extends OdfDocument { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfTextDocument.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfTextDocument.java index 18bf8d276b..863a916a59 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfTextDocument.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/OdfTextDocument.java @@ -34,7 +34,6 @@ /** * This class represents an empty ODF text document. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.TextDocument} in Simple API. */ public class OdfTextDocument extends OdfDocument { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfPresentationNotes.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfPresentationNotes.java index cdc0ab3149..d59434722c 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfPresentationNotes.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfPresentationNotes.java @@ -34,7 +34,6 @@ /** * Convenient functionality for the parent ODF OpenDocument element * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.presentation.Notes} in Simple API. */ public class OdfPresentationNotes { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfSlide.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfSlide.java index 837c08084d..538534bdf8 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfSlide.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/presentation/OdfSlide.java @@ -33,7 +33,6 @@ * OdfSlide represents the presentation slide feature of the ODF document. * OdfSlide provides methods to get the slide index,get the content of the current slide, etc. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.presentation.Slide} in Simple API. */ public class OdfSlide { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTable.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTable.java index 5c08b21196..b6094df763 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTable.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTable.java @@ -72,7 +72,6 @@ *

* OdfTable provides methods to get/add/delete/modify table column/row/cell. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.table.Table} in Simple API. */ public class OdfTable { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCell.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCell.java index 370be0484a..c4078e3c81 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCell.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCell.java @@ -74,7 +74,6 @@ *

* OdfTable provides methods to get/set/modify the cell content and cell properties. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.table.Cell} in Simple API. */ public class OdfTableCell { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCellRange.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCellRange.java index 25d4843395..73d5bd9162 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCellRange.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableCellRange.java @@ -44,7 +44,6 @@ *

* OdfTableCellRange provides methods to get/set/modify the properties of cell range. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.table.CellRange} in Simple API. */ public class OdfTableCellRange { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableColumn.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableColumn.java index f23cf16c7d..e278491e1a 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableColumn.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableColumn.java @@ -49,7 +49,6 @@ *

* OdfTableColumn provides methods to get table cells that belong to this table column. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.table.Column} in Simple API. */ public class OdfTableColumn { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableRow.java b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableRow.java index f0aa4a1a63..d731769c7f 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableRow.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/doc/table/OdfTableRow.java @@ -60,7 +60,6 @@ *

* OdfTableRow provides methods to get table cells that belong to this table row. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.table.Row} in Simple API. */ public class OdfTableRow { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawFrame.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawFrame.java index aa7537d233..0257822e7d 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawFrame.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawFrame.java @@ -29,7 +29,6 @@ /** * Convenient functionalty for the parent ODF OpenDocument element * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.draw.Frame} in Simple API. */ public class OdfDrawFrame extends DrawFrameElement { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawImage.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawImage.java index 4379f042be..c4da840c1f 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawImage.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/draw/OdfDrawImage.java @@ -49,7 +49,6 @@ /** * Convenient functionalty for the parent ODF OpenDocument element * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.draw.Image} in Simple API. */ public class OdfDrawImage extends DrawImageElement { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfEditableTextExtractor.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfEditableTextExtractor.java index ea4914aaec..ce76923566 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfEditableTextExtractor.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfEditableTextExtractor.java @@ -46,7 +46,6 @@ * *

This function can be used by search engine, and text analytic operations.

* - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.EditableTextExtractor} in Simple API. */ public class OdfEditableTextExtractor extends OdfTextExtractor { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextExtractor.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextExtractor.java index 3dbfda7365..820aa37adc 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextExtractor.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextExtractor.java @@ -38,7 +38,6 @@ *

It implements part of white space handling fuctions: text:p, text:h, text:s, text:tab, text:linebreak are processed * according to ODF specification.

* - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.TextExtractor} in Simple API. */ public class OdfTextExtractor extends DefaultElementVisitor { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextHeading.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextHeading.java index c13a2347d0..79a01f3ff7 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextHeading.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextHeading.java @@ -28,7 +28,6 @@ /** * Convenient functionalty for the parent ODF OpenDocument element * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.text.Paragraph} in Simple API. */ public class OdfTextHeading extends TextHElement { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextList.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextList.java index a6625d8f57..62865fbe5b 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextList.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextList.java @@ -37,7 +37,6 @@ /** * Convenient functionalty for the parent ODF OpenDocument element * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.text.list.List} in Simple API. */ public class OdfTextList extends TextListElement { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextParagraph.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextParagraph.java index 9c6280b7ba..59d2bc8e59 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextParagraph.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextParagraph.java @@ -27,7 +27,6 @@ /** * Convenient functionalty for the parent ODF OpenDocument element * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.text.Paragraph} in Simple API. */ public class OdfTextParagraph extends TextPElement { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextSpan.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextSpan.java index 376aba5bed..690f4a56a7 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextSpan.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfTextSpan.java @@ -28,7 +28,6 @@ /** * Convenient functionalty for the parent ODF OpenDocument element * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.text.Span} in Simple API. */ public class OdfTextSpan extends TextSpanElement { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfWhitespaceProcessor.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfWhitespaceProcessor.java index 4ce6ee6269..373b11494f 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfWhitespaceProcessor.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/doc/text/OdfWhitespaceProcessor.java @@ -34,7 +34,6 @@ * It's a tool class to help process white space. * * @author J David Eisenberg - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.WhitespaceProcessor} in Simple API. */ public class OdfWhitespaceProcessor { private int nSpaces; diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfMetaDocumentStatistic.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfMetaDocumentStatistic.java index 71e2d884c3..f9f613654d 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfMetaDocumentStatistic.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfMetaDocumentStatistic.java @@ -28,7 +28,6 @@ * OdfMetaDocumentStatistic feature specifies the statistics about * the document. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.meta.DocumentStatistic} in Simple API. */ public class OdfMetaDocumentStatistic { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfOfficeMeta.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfOfficeMeta.java index 0f7e8c053a..64e4aede60 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfOfficeMeta.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/meta/OdfOfficeMeta.java @@ -57,7 +57,6 @@ *

* It provides convenient method to get meta data info. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.meta.Meta} in Simple API. */ public class OdfOfficeMeta { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/InvalidNavigationException.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/InvalidNavigationException.java index 7e94ce8dcc..769126b48b 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/InvalidNavigationException.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/InvalidNavigationException.java @@ -24,7 +24,6 @@ * Thrown to indicate that the navigation operation can not be processed on * selections * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.navigation.InvalidNavigationException} in Simple API. */ public class InvalidNavigationException extends Exception { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Navigation.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Navigation.java index ed54b63b5d..13adbef174 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Navigation.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Navigation.java @@ -26,7 +26,6 @@ * Abstract class Navigation used to navigate the document * and find the matched element by the user defined conditions * - *@deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.navigation.Navigation} in Simple API. */ public abstract class Navigation { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Selection.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Selection.java index 2392ab9e37..4786a478bc 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Selection.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/Selection.java @@ -30,7 +30,6 @@ * can be recognized by the container mElement, the start mIndex of the text * content of this mElement and the text content. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.navigation.Selection} in Simple API. */ public abstract class Selection { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextNavigation.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextNavigation.java index 379b554dcd..6050871e10 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextNavigation.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextNavigation.java @@ -38,7 +38,6 @@ * it is used to search the document and find the matched text * and would return TextSelection instance * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.navigation.TextNavigation} in Simple API. */ public class TextNavigation extends Navigation { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextSelection.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextSelection.java index 6c316825b0..13d88923ba 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextSelection.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextSelection.java @@ -49,7 +49,6 @@ * OdfTextHeadingt), the start index of the text content of the container element and * the text content of this selection. * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.navigation.TextSelection} in Simple API. */ public class TextSelection extends Selection { diff --git a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextStyleNavigation.java b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextStyleNavigation.java index dc7bc58d80..c91654486d 100644 --- a/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextStyleNavigation.java +++ b/odfdom/src/main/java/org/odftoolkit/odfdom/incubator/search/TextStyleNavigation.java @@ -47,7 +47,6 @@ * search the document and find the matched style properties and would return * TextSelection instance * - * @deprecated As of release 0.8.8, replaced by {@link org.odftoolkit.simple.common.navigation.TextStyleNavigation} in Simple API. */ public class TextStyleNavigation extends Navigation {