@@ -1016,6 +1016,7 @@ extension JsonFactory$$Methods on JsonFactory {
10161016 ///@param state Whether to enable or disable the feature
10171017 ///@return This factory instance (to allow call chaining)
10181018 ///@deprecated since 2.10 use JsonFactoryBuilder\#configure(JsonFactory.Feature, boolean) instead
1019+ @core $_.Deprecated ('This Java method is deprecated.' )
10191020 JsonFactory ? configure (
10201021 JsonFactory$Feature ? f,
10211022 core$_.bool state,
@@ -1051,6 +1052,7 @@ extension JsonFactory$$Methods on JsonFactory {
10511052 ///@param f Feature to enable
10521053 ///@return This factory instance (to allow call chaining)
10531054 ///@deprecated since 2.10 use JsonFactoryBuilder\#configure(JsonFactory.Feature, boolean) instead
1055+ @core $_.Deprecated ('This Java method is deprecated.' )
10541056 JsonFactory ? enable (
10551057 JsonFactory$Feature ? f,
10561058 ) {
@@ -1084,6 +1086,7 @@ extension JsonFactory$$Methods on JsonFactory {
10841086 ///@param f Feature to disable
10851087 ///@return This factory instance (to allow call chaining)
10861088 ///@deprecated since 2.10 use JsonFactoryBuilder\#configure(JsonFactory.Feature, boolean) instead
1089+ @core $_.Deprecated ('This Java method is deprecated.' )
10871090 JsonFactory ? disable (
10881091 JsonFactory$Feature ? f,
10891092 ) {
@@ -1442,6 +1445,7 @@ extension JsonFactory$$Methods on JsonFactory {
14421445 ///@param d Decorator to configure for this factory, if any ({@code null} if none)
14431446 ///@return This factory instance (to allow call chaining)
14441447 ///@deprecated Since 2.10 use JsonFactoryBuilder\#inputDecorator(InputDecorator) instead
1448+ @core $_.Deprecated ('This Java method is deprecated.' )
14451449 JsonFactory ? setInputDecorator (
14461450 inputdecorator$_.InputDecorator ? d,
14471451 ) {
@@ -1732,6 +1736,7 @@ extension JsonFactory$$Methods on JsonFactory {
17321736 ///@return This factory instance (to allow call chaining)
17331737 ///@param d Output decorator to use, if any
17341738 ///@deprecated Since 2.10 use JsonFactoryBuilder\#outputDecorator(OutputDecorator) instead
1739+ @core $_.Deprecated ('This Java method is deprecated.' )
17351740 JsonFactory ? setOutputDecorator (
17361741 outputdecorator$_.OutputDecorator ? d,
17371742 ) {
@@ -2585,6 +2590,7 @@ extension JsonFactory$$Methods on JsonFactory {
25852590 ///@throws IOException if parser initialization fails due to I/O (read) problem
25862591 ///@throws JsonParseException if parser initialization fails due to content decoding problem
25872592 ///@deprecated Since 2.2, use \#createParser(File) instead.
2593+ @core $_.Deprecated ('This Java method is deprecated.' )
25882594 jsonparser$_.JsonParser ? createJsonParser (
25892595 file$_.File ? f,
25902596 ) {
@@ -2631,6 +2637,7 @@ extension JsonFactory$$Methods on JsonFactory {
26312637 ///@throws IOException if parser initialization fails due to I/O (read) problem
26322638 ///@throws JsonParseException if parser initialization fails due to content decoding problem
26332639 ///@deprecated Since 2.2, use \#createParser(URL) instead.
2640+ @core $_.Deprecated ('This Java method is deprecated.' )
26342641 jsonparser$_.JsonParser ? createJsonParser$1 (
26352642 url$_.URL ? url,
26362643 ) {
@@ -2680,6 +2687,7 @@ extension JsonFactory$$Methods on JsonFactory {
26802687 ///@throws IOException if parser initialization fails due to I/O (read) problem
26812688 ///@throws JsonParseException if parser initialization fails due to content decoding problem
26822689 ///@deprecated Since 2.2, use \#createParser(InputStream) instead.
2690+ @core $_.Deprecated ('This Java method is deprecated.' )
26832691 jsonparser$_.JsonParser ? createJsonParser$2 (
26842692 inputstream$_.InputStream ? in$,
26852693 ) {
@@ -2722,6 +2730,7 @@ extension JsonFactory$$Methods on JsonFactory {
27222730 ///@throws IOException if parser initialization fails due to I/O (read) problem
27232731 ///@throws JsonParseException if parser initialization fails due to content decoding problem
27242732 ///@deprecated Since 2.2, use \#createParser(Reader) instead.
2733+ @core $_.Deprecated ('This Java method is deprecated.' )
27252734 jsonparser$_.JsonParser ? createJsonParser$3 (
27262735 reader$_.Reader ? r,
27272736 ) {
@@ -2757,6 +2766,7 @@ extension JsonFactory$$Methods on JsonFactory {
27572766 ///@throws IOException if parser initialization fails due to I/O (read) problem
27582767 ///@throws JsonParseException if parser initialization fails due to content decoding problem
27592768 ///@deprecated Since 2.2, use \#createParser(byte[] ) instead.
2769+ @core $_.Deprecated ('This Java method is deprecated.' )
27602770 jsonparser$_.JsonParser ? createJsonParser$4 (
27612771 jni$_.JByteArray ? data,
27622772 ) {
@@ -2803,6 +2813,7 @@ extension JsonFactory$$Methods on JsonFactory {
28032813 ///@throws IOException if parser initialization fails due to I/O (read) problem
28042814 ///@throws JsonParseException if parser initialization fails due to content decoding problem
28052815 ///@deprecated Since 2.2, use \#createParser(byte[] ,int,int) instead.
2816+ @core $_.Deprecated ('This Java method is deprecated.' )
28062817 jsonparser$_.JsonParser ? createJsonParser$5 (
28072818 jni$_.JByteArray ? data,
28082819 core$_.int offset,
@@ -2841,6 +2852,7 @@ extension JsonFactory$$Methods on JsonFactory {
28412852 ///@throws IOException if parser initialization fails due to I/O (read) problem
28422853 ///@throws JsonParseException if parser initialization fails due to content decoding problem
28432854 ///@deprecated Since 2.2, use \#createParser(String) instead.
2855+ @core $_.Deprecated ('This Java method is deprecated.' )
28442856 jsonparser$_.JsonParser ? createJsonParser$6 (
28452857 jni$_.JString ? content,
28462858 ) {
@@ -2896,6 +2908,7 @@ extension JsonFactory$$Methods on JsonFactory {
28962908 ///@return Generator constructed
28972909 ///@throws IOException if parser initialization fails due to I/O (write) problem
28982910 ///@deprecated Since 2.2, use \#createGenerator(OutputStream, JsonEncoding) instead.
2911+ @core $_.Deprecated ('This Java method is deprecated.' )
28992912 jsongenerator$_.JsonGenerator ? createJsonGenerator (
29002913 outputstream$_.OutputStream ? out,
29012914 jsonencoding$_.JsonEncoding ? enc,
@@ -2940,6 +2953,7 @@ extension JsonFactory$$Methods on JsonFactory {
29402953 ///@return Generator constructed
29412954 ///@throws IOException if parser initialization fails due to I/O (write) problem
29422955 ///@deprecated Since 2.2, use \#createGenerator(Writer) instead.
2956+ @core $_.Deprecated ('This Java method is deprecated.' )
29432957 jsongenerator$_.JsonGenerator ? createJsonGenerator$1 (
29442958 writer$_.Writer ? out,
29452959 ) {
@@ -2977,6 +2991,7 @@ extension JsonFactory$$Methods on JsonFactory {
29772991 ///@return Generator constructed
29782992 ///@throws IOException if parser initialization fails due to I/O (write) problem
29792993 ///@deprecated Since 2.2, use \#createGenerator(OutputStream) instead.
2994+ @core $_.Deprecated ('This Java method is deprecated.' )
29802995 jsongenerator$_.JsonGenerator ? createJsonGenerator$2 (
29812996 outputstream$_.OutputStream ? out,
29822997 ) {
0 commit comments