Skip to content

Commit 3ad109c

Browse files
SDK regenerated by CI server [ci skip]
1 parent 40cc119 commit 3ad109c

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ This repository contains Aspose.Words Cloud SDK for Java source code. This SDK a
1313
* Watermarks and protection
1414
* Full read & write access to Document Object Model, including sections, paragraphs, text, images, tables, headers/footers and many others
1515

16+
## Enhancements in Version 23.9
17+
18+
- Support for class inheritance in responses from the server.
19+
20+
1621
## Enhancements in Version 23.6
1722

1823
- Fix XMLHttpRequest in web applications.

src/main/java/com/aspose/words/cloud/JSON.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,6 @@ public static class ModelAdapterFactory implements TypeAdapterFactory {
505505
put("FootnotesResponse, _", com.aspose.words.cloud.model.FootnotesResponse.class);
506506
put("FootnotesStatData, _", com.aspose.words.cloud.model.FootnotesStatData.class);
507507
put("FootnoteUpdate, _", com.aspose.words.cloud.model.FootnoteUpdate.class);
508-
put("FormField, _", com.aspose.words.cloud.model.FormField.class);
509508
put("FormFieldCheckbox, _", com.aspose.words.cloud.model.FormFieldCheckbox.class);
510509
put("FormFieldCollection, _", com.aspose.words.cloud.model.FormFieldCollection.class);
511510
put("FormFieldDropDown, _", com.aspose.words.cloud.model.FormFieldDropDown.class);
@@ -565,7 +564,6 @@ public static class ModelAdapterFactory implements TypeAdapterFactory {
565564
put("PageStatData, _", com.aspose.words.cloud.model.PageStatData.class);
566565
put("Paragraph, _", com.aspose.words.cloud.model.Paragraph.class);
567566
put("ParagraphFormat, _", com.aspose.words.cloud.model.ParagraphFormat.class);
568-
put("ParagraphFormatBase, _", com.aspose.words.cloud.model.ParagraphFormatBase.class);
569567
put("ParagraphFormatResponse, _", com.aspose.words.cloud.model.ParagraphFormatResponse.class);
570568
put("ParagraphFormatUpdate, _", com.aspose.words.cloud.model.ParagraphFormatUpdate.class);
571569
put("ParagraphInsert, _", com.aspose.words.cloud.model.ParagraphInsert.class);
@@ -659,7 +657,6 @@ public static class ModelAdapterFactory implements TypeAdapterFactory {
659657
put("TableRowInsertDto, _", com.aspose.words.cloud.model.TableRowInsertDto.class);
660658
put("TableRowResponse, _", com.aspose.words.cloud.model.TableRowResponse.class);
661659
put("TabStop, _", com.aspose.words.cloud.model.TabStop.class);
662-
put("TabStopBase, _", com.aspose.words.cloud.model.TabStopBase.class);
663660
put("TabStopInsert, _", com.aspose.words.cloud.model.TabStopInsert.class);
664661
put("TabStopsResponse, _", com.aspose.words.cloud.model.TabStopsResponse.class);
665662
put("TextSaveOptionsData, _", com.aspose.words.cloud.model.TextSaveOptionsData.class);

src/main/java/com/aspose/words/cloud/model/FormField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* FromField.
4747
*/
4848
@ApiModel(description = "FromField.")
49-
public class FormField extends NodeLink {
49+
public abstract class FormField extends NodeLink {
5050
@SerializedName("Name")
5151
protected String name;
5252

src/main/java/com/aspose/words/cloud/model/ParagraphFormatBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* Paragraph format element base class.
4747
*/
4848
@ApiModel(description = "Paragraph format element base class.")
49-
public class ParagraphFormatBase extends LinkElement {
49+
public abstract class ParagraphFormatBase extends LinkElement {
5050
/**
5151
* Gets or sets text alignment for the paragraph.
5252
*/

src/main/java/com/aspose/words/cloud/model/TabStopBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* Base class for paragraph format tab stop DTO.
4747
*/
4848
@ApiModel(description = "Base class for paragraph format tab stop DTO.")
49-
public class TabStopBase implements ModelIfc {
49+
public abstract class TabStopBase implements ModelIfc {
5050
/**
5151
* Gets or sets the alignment of text at this tab stop.
5252
*/

0 commit comments

Comments
 (0)